From 7b6ddc97fc3c0e34c48bb3e35fa09ed2f5dc8cbd Mon Sep 17 00:00:00 2001 From: agessaman Date: Sun, 7 Sep 2025 15:49:21 -0700 Subject: [PATCH] Update invalid prefix format message to clarify usage example --- modules/commands/prefix_command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/commands/prefix_command.py b/modules/commands/prefix_command.py index 2f94a3c..6243cbf 100644 --- a/modules/commands/prefix_command.py +++ b/modules/commands/prefix_command.py @@ -83,7 +83,7 @@ class PrefixCommand(BaseCommand): # Validate prefix format if len(command) != 2 or not command.isalnum(): - response = "❌ Invalid prefix format. Use two characters (e.g., '1A', '82', 'BD')" + response = "❌ Invalid prefix format. Use two characters (e.g., prefix 1A)" return await self.send_response(message, response) # Get prefix data