This commit is contained in:
Slipstream 2025-04-25 14:26:07 -06:00
parent 7dcbfc2be2
commit d83edc93b6
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD

View File

@ -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)