Ability to play Uno implemented in early stages!
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user