on_message 停止我所有的 bot.commands 工作

on_message stops all of my bot.commands from working

我有一个翻转命令 returns 正面或反面,在我添加 on_message 功能之前它工作正常。我对 SO 做了一些研究并阅读了文档,here 它说在 on_message 函数中包含 await bot.process_commands(message) 但这并没有解决问题,翻转命令仍然不起作用。如果我删除 on_message 函数,一切都会按预期进行。

bot.py

import discord 
from discord.ext import commands 
import random

# from app bot user 
# click to reveal 
TOKEN = 'token_here'

client = commands.Bot(command_prefix = '!')

@client.event 
async def on_ready():
    print('Bot ready')

@client.command()
async def flip():
    flip = random.choice(['heads', 'tails'])
    await client.say(flip)

@client.event
async def on_message(message):
    if message.content.upper().startswith('N****'):
        await client.send_message(message.channel, "Please do not use that word here.")

    client.process_commands(message)

@client.event
async def on_member_join(member):
    await client.change_presence(game=discord.Game(name='Hi %s' % (member)))
    await client.send_message(member, "Hi %s, Welcome to Carson's Discord Server! This server is fairly NSFW at times; you've been warned! Enjoy your stay :)" % (member))

@client.event
async def on_member_remove(member):
    await client.change_presence(game=discord.Game(name='Bye %s' % (member)))

client.run(TOKEN)

当我 运行 脚本时,其他一切正常,没有错误。只是命令不起作用。任何见解将不胜感激。

您需要 await on_message 中的最后一行,因为 process_commands 是协程。

await client.process_commands(message)

如果您在 discord 中发送 !flip,您应该能够收到适当的回复(headstails)。