From 4ce98a9e6fd95da53fd03430903496c34ef3d118 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Mon, 9 Mar 2026 09:59:31 -0700 Subject: Update games.py --- games.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games.py b/games.py index 1008516..532da5d 100644 --- a/games.py +++ b/games.py @@ -26,7 +26,7 @@ async def handle_game_command(bot_api, room_id: str, sender: str, body: str, sel lower = stripped.lower() # Passive trigger: any message containing "what to play" - if "what to play" in lower and not lower.startswith("!") and self_name in lower: + if "what to play" in lower and not lower.startswith("!"): pick = db.find_item(CATEGORY) reply = f"Fresh from the list of considerations:\n\n{_format(pick)}" if pick else "No games in the list yet. Use !addgame to add one!" await bot_api.send_text_message(room_id, reply) -- cgit v1.2.3