Editing return message statement in chat_listener.py

This commit is contained in:
2025-11-17 15:25:52 +01:00
parent c061f2ff78
commit 30b9df0ebb

View File

@@ -23,7 +23,10 @@ class TwitchBot(commands.Bot):
async def event_message(self, message):
"""Runs every time a message is sent in chat."""
if message.echo:
return # Ignore messages sent by the bot itself
# This is a message from the bot itself (the authenticated user).
# We'll log it for debugging but won't process it further.
print(f"Echo message from {message.author.name} in #{self.channel_name}: {message.content}")
return
# For now, we just print the message to the console.
# Later, this will push messages to a queue for the WebSocket.