Discord.py @bot.command() 未运行

Nek*_*dev 1 python bots function discord.py

我有这样的东西。

from flask import Flask
from threading import Thread
import discord
from discord.ext import commands, tasks
from discord.utils import get
import requests
from Moderator.badwords import words
import time
import datetime
from Stats.uptime import data

help_command = commands.DefaultHelpCommand(
    no_category = 'Commands'
)

intents = discord.Intents().all()
bot = commands.Bot(command_prefix='!', description="Hey there, I'm Botty (for example)!", help_command=help_command, intents=intents)

@bot.command()
async def hello(ctx):
  await ctx.send(ctx.author.mention + " hello!")

@bot.event
async def on_ready():
  print('Ready!')

@bot.event
async def on_message(message):
    for word in words:
        if word in message.content.lower():
            await message.delete()
            await message.channel.send("Oops! Seems like " + message.author.mention + " was trying to send a message that was breaking the " + bot.get_channel(783064049859559434).mention + ". Luckily, I deleted it before it caused any more damage. Don't send any more messages like that!\n\nIf you think that I made an error, please report it in " + bot.get_channel(783074030265040916).mention + ", " + bot.get_channel(783074002255478848).mention + " or in " + bot.get_channel(783092164590174251).mention)

@bot.event
async def on_member_join(member):
  print(f"{member} joined the server")

bot.run(TOKEN)
Run Code Online (Sandbox Code Playgroud)

现在,我可以毫无错误地编译和运行此代码,并且当成员加入或用户发送消息时,一切都工作得很好。但当涉及到运行命令时,它甚至无法启动。我缺少什么吗?

提前致谢

Wha*_*ha- 13

文档:

覆盖默认提供的 on_message 会禁止运行任何额外的命令。要解决此问题,请bot.process_commands(message)在 on_message 末尾添加一行。

如果您覆盖on_message,则需要使用await bot.process_commands(message)以便处理命令。尝试将其添加到您的on_message活动中。