Ability to play Uno implemented in early stages!

This commit is contained in:
2026-01-30 21:43:20 +02:00
parent 5b1163c7af
commit 0a9145728e
6 changed files with 687 additions and 1 deletions

View File

@@ -144,6 +144,12 @@ async def on_message(message):
await handle_voice_command(message, cmd, args)
return
# Check for UNO commands (!uno create, !uno join, !uno list, !uno quit, !uno help)
if message.content.strip().lower().startswith('!uno'):
from commands.uno import handle_uno_command
await handle_uno_command(message)
return
# Block all text responses when voice session is active
if globals.VOICE_SESSION_ACTIVE:
# Queue the message for later processing (optional)