前提・実現したいこと
on_message二つ入れるとawait client.process_commands(message)入れても順番が下の方しか反応してくれません。
因みに他のコマンドはちゃんと機能してます
発生している問題・エラーメッセージ
なし
該当のソースコード
@client.event async def on_message(message): if message.author.bot: return # ~~~~~ if message.content == "1": msg = await message.channel.send("2") await asyncio.sleep(2) await msg.edit(content="3") await client.process_commands(message) @client.event async def on_message(message): list_1 = ['1', '2', '3'] if message.author.bot: return for list_2 in list_1: if message.content == list_2: await message.channel.send("hi") return await client.process_commands(message)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。