From e4f077de74f17ea557c2c47aadb3ec153c133081 Mon Sep 17 00:00:00 2001 From: crate Date: Sun, 8 Jun 2025 13:25:41 -0500 Subject: [PATCH] case insensitive cmds --- garfmain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/garfmain.py b/garfmain.py index 6836ff8..94ebeeb 100644 --- a/garfmain.py +++ b/garfmain.py @@ -27,7 +27,7 @@ intents.messages = True intents.message_content = True garfbot = commands.Bot( - command_prefix=["Garfbot ", "garfbot ", "Garf", "garf", "$"], intents=intents + command_prefix=["Garfbot ", "garfbot ", "Garf", "garf", "$"], case_insensitive=True, intents=intents ) garfbot.remove_command("help")