From d83edc93b6c76fca14bd4252498d57633c5bf391 Mon Sep 17 00:00:00 2001 From: Slipstream Date: Fri, 25 Apr 2025 14:26:07 -0600 Subject: [PATCH] a --- commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.py b/commands.py index dacc321..9889553 100644 --- a/commands.py +++ b/commands.py @@ -10,7 +10,7 @@ async def load_all_cogs(bot: commands.Bot): failed_cogs = [] for filename in os.listdir(cogs_dir): - if filename.endswith(".py") and not filename.startswith("__"): + if filename.endswith(".py") and not filename.startswith("__") and not filename.startswith("gurt"): cog_name = f"{cogs_dir}.{filename[:-3]}" try: await bot.load_extension(cog_name)