From 183d507e29e9e71b1b5945f256469694f998aa2e Mon Sep 17 00:00:00 2001 From: Slipstream Date: Sun, 18 May 2025 22:47:28 -0600 Subject: [PATCH] fix: Exclude femdom cogs from loading process in load_all_cogs function --- commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands.py b/commands.py index 804ab74..5a5a157 100644 --- a/commands.py +++ b/commands.py @@ -21,7 +21,8 @@ async def load_all_cogs(bot: commands.Bot, skip_cogs: Optional[List[str]] = None not filename.startswith("__") and \ not filename.startswith("gurt") and \ not filename.startswith("profile_updater") and \ - not filename.endswith("_base_cog.py"): # Skip base cogs + not filename.endswith("_base_cog.py") and \ + not filename.startswith("femdom"): # Special check for welcome_cog.py if filename == "welcome_cog.py": print(f"Found welcome_cog.py, attempting to load it...")