diff options
| author | Pinapelz <donaldshan1@outlook.com> | 2026-03-09 09:59:31 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-09 09:59:31 -0700 |
| commit | 4ce98a9e6fd95da53fd03430903496c34ef3d118 (patch) | |
| tree | 38d507708dcb61383ae211fc2a9506e461766d29 | |
| parent | 3c34982281cb6f3a8fc9bfef313e8149cad0cb50 (diff) | |
Update games.py
| -rw-r--r-- | games.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |
