From 206322f08edb90c388b7b64ea867c606803a53b5 Mon Sep 17 00:00:00 2001 From: Codex Date: Fri, 6 Jun 2025 19:12:51 +0000 Subject: [PATCH] Fix command loader skip non-cog files --- commands.py | 1 + 1 file changed, 1 insertion(+) diff --git a/commands.py b/commands.py index 87b195d..efb9f9c 100644 --- a/commands.py +++ b/commands.py @@ -25,6 +25,7 @@ async def load_all_cogs(bot: commands.Bot, skip_cogs: Optional[List[str]] = None and not filename.startswith("profile_updater") and not filename.startswith("neru") and not filename.endswith("_base_cog.py") + and not filename.endswith("_config.py") and not filename.startswith("femdom") and not filename == "VoiceGatewayCog.py" ):