i have code:
bot = commands.Bot(command_prefix='!')
@bot.event
async def on_ready():
print('Егор выпущен на охоту')
@bot.event
async def on_message(message):
if message.content.lower().startswith('шутка'):
await message.channel.send(random.choice(arr2))
await bot.process_commands(message)
@bot.command(name="flip")
async def flip(ctx):
await ctx.send(random.choice(flips))
bot.run('TOKEN')
i tried await bot.process_commands(message)
but it didn't help. What could be the issue and how to fix it?