所以我尝试创建一个on_message事件,该事件检测到一个关键字并对其进行响应,但是问题在于现在它不让其他命令起作用?
async def on_message(message):
if 'gay' in message.content:
await message.channel.send('no u')
答案 0 :(得分:1)
您需要在await client.process_commands(message)
事件的末尾添加on_message
。