客户端事件使我的命令无法正常工作

时间:2020-10-14 09:53:24

标签: discord.py

所以我尝试创建一个on_message事件,该事件检测到一个关键字并对其进行响应,但是问题在于现在它不让其他命令起作用?

async def on_message(message):
    if 'gay' in message.content:
        await message.channel.send('no u')

1 个答案:

答案 0 :(得分:1)

您需要在await client.process_commands(message)事件的末尾添加on_message