From 9015338a1c5adcdbb5700b411acfa0ae2a57b85e Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Wed, 22 Apr 2026 00:15:46 -0400 Subject: [PATCH] help: move 8ball to AI 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 1a928a7..5912467 100644 --- a/matrixbot/commands.py +++ b/matrixbot/commands.py @@ -112,8 +112,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"]), - ("🎮 Games", ["8ball", "wordle", "trivia", "rps", "poll"]), + ("🤖 AI", ["ask", "fortune", "8ball"]), + ("🎮 Games", ["wordle", "trivia", "rps", "poll"]), ("🎲 Random", ["flip", "roll", "random", "champion", "agent"]), ("🖥️ Server", ["minecraft", "ping", "health"]), ]