>백엔드 개발 >파이썬 튜토리얼 >on_message를 사용자 정의한 후 Discord.py 봇 명령이 작동하지 않는 이유는 무엇입니까?

on_message를 사용자 정의한 후 Discord.py 봇 명령이 작동하지 않는 이유는 무엇입니까?

Mary-Kate Olsen
Mary-Kate Olsen원래의
2024-12-17 18:56:10987검색

Why Aren't My Discord.py Bot Commands Working After Customizing on_message?

문제 이해: 명령이 작동하지 않음

Discord.py 라이브러리를 사용할 때 일부 사용자는 명령이 실행되지 않는 예기치 않은 동작을 경험합니다. 봇이 활성화된 것 같지만요. 이 문제는 on_message 이벤트 핸들러로 인해 발생할 수 있습니다.

문제 해결: bot.process_commands(message) 추가

Discord.py 문서에 따르면 기본 on_message 이벤트 핸들러는 추가 명령이 실행되는 것을 방지합니다. 이 문제를 해결하려면 사용자 정의 on_message 함수 끝에 bot.process_commands(message) 줄을 포함해야 합니다.

안내 문서 참조:

Overriding the default provided on_message forbids any extra commands from running. To fix this, add a bot.process_commands(message) line at the end of your on_message.

구현 예:

import discord
import asyncio
from discord.ext import commands

bot = commands.Bot(command_prefix = '-')
@bot.event
async def on_ready():
    print('Logged in as')
    print(bot.user.name)
    print(bot.user.id)
    print('------')

@bot.event
async def on_message(message):
    # do some extra stuff here

    await bot.process_commands(message)

다음을 따르세요. 지침에 따라 사용자 정의 on_message 이벤트 핸들러의 기능을 유지하면서 명령이 계속해서 원활하게 작동하도록 할 수 있습니다.

위 내용은 on_message를 사용자 정의한 후 Discord.py 봇 명령이 작동하지 않는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.