From 1ba115167346b7d10660e34d2145bb311d4480ec Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Mon, 20 Apr 2026 19:32:43 -0400 Subject: [PATCH] help: move 8ball from AI to Games category 8ball is only AI-powered for specific users (Wynter/Jared); for everyone else it's a random static response. Games is the correct category. Co-Authored-By: Claude Sonnet 4.6 --- matrixbot/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/matrixbot/commands.py b/matrixbot/commands.py index 6dea44c..cbb62a1 100644 --- a/matrixbot/commands.py +++ b/matrixbot/commands.py @@ -110,8 +110,8 @@ def check_cooldown(sender: str, cmd_name: str, seconds: int = COOLDOWN_SECONDS) @command("help", "Show all available commands") async def cmd_help(client: AsyncClient, room_id: str, sender: str, args: str): categories = [ - ("🤖 AI", ["ask", "fortune", "8ball"]), - ("🎮 Games", ["wordle", "trivia", "rps", "poll"]), + ("🤖 AI", ["ask", "fortune"]), + ("🎮 Games", ["8ball", "wordle", "trivia", "rps", "poll"]), ("🎲 Random", ["flip", "roll", "random", "champion", "agent"]), ("🖥️ Server", ["minecraft", "ping", "health"]), ]