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):
if message.content.startswith('-debug'):
await message.channel.send('d')
@bot.command(pass_context=True)
async def ping(ctx):
await ctx.channel.send('Pong!')
@bot.command(pass_context=True)
async def add(ctx, *, arg):
await ctx.send(arg)
我在on_message中拥有的调试输出确实可以正常工作并响应,并且整个bot都可以运行,没有任何异常,但是它不会调用命令。
#1 楼
来自文档:覆盖提供的默认值
on_message
禁止运行任何其他命令。要解决此问题,请在bot.process_commands(message)
的末尾添加on_message
行。例如:@bot.event
async def on_message(message):
# do some extra stuff here
await bot.process_commands(message)
默认
on_message
包含对此协程的调用,但是当您用自己的on_message
覆盖它时,您需要自己调用它。