From ed5b8c8487384cb62a85d87696263f3379170850 Mon Sep 17 00:00:00 2001 From: Codex Date: Fri, 6 Jun 2025 19:19:50 +0000 Subject: [PATCH] Ignore aimod_cog in auto loader --- commands.py | 1 + 1 file changed, 1 insertion(+) diff --git a/commands.py b/commands.py index efb9f9c..695250e 100644 --- a/commands.py +++ b/commands.py @@ -26,6 +26,7 @@ async def load_all_cogs(bot: commands.Bot, skip_cogs: Optional[List[str]] = None and not filename.startswith("neru") and not filename.endswith("_base_cog.py") and not filename.endswith("_config.py") + and not filename == "aimod_cog.py" # Avoid double-loading via aimod.py and not filename.startswith("femdom") and not filename == "VoiceGatewayCog.py" ):