From 7fda8e8fdbf5d4f030152445c7e836237c620771 Mon Sep 17 00:00:00 2001 From: owuh Date: Fri, 29 Aug 2025 15:21:59 -0400 Subject: [PATCH] fix(help): remove double prefix in '$help commands' "usage" contained prefix, which is added later on, resulting in --- tux/help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tux/help.py b/tux/help.py index 619907dbe..c7bf3bca2 100644 --- a/tux/help.py +++ b/tux/help.py @@ -97,7 +97,7 @@ def __init__(self) -> None: command_attrs={ "help": "Lists all commands and sub-commands.", "aliases": ["h", "commands"], - "usage": "$help or ", + "usage": "help or ", }, )