Discord.py @bot.event
问题 So I have a script that uses both @bot.event and @bot.command() . The problem is that when I have a @bot.event waiting the @bot.command() will not run. Here is my code: @bot.event async def on_ready(): print("Bot Is Ready And Online!") async def react(message): if message.content == "Meeting": await message.add_reaction("👍") @bot.command() async def info(ctx): await ctx.send("Hello, thanks for testing out our bot. ~ techNOlogics") @bot.command(pass_context=True) async def meet(ctx,time): if