From aa563b265cbe90462e7d72b5196d75cf60acb821 Mon Sep 17 00:00:00 2001 From: SimolZimol <70102430+SimolZimol@users.noreply.github.com> Date: Tue, 17 Dec 2024 22:37:44 +0100 Subject: [PATCH] modified: bot.py --- bot.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/bot.py b/bot.py index bf3292e..80c7866 100644 --- a/bot.py +++ b/bot.py @@ -490,14 +490,15 @@ async def on_message(message): if message.author.bot: # Bots ignorieren return + channel =message.channel + + await channel.send("test") + channel_id = message.channel.id # Prüfen, ob der Live-Chat aktiv ist if channel_id in live_chats and live_chats[channel_id]["active"]: - await live_chat_queue.put((message, message.id, message.author.id, message.author.display_name, message.content)) - - await client.process_commands(message) async def process_live_chat_queue():