From 737e2382129ccb5275e6f9fb31e5d9818b571c7d Mon Sep 17 00:00:00 2001 From: Slipstream Date: Fri, 6 Jun 2025 13:17:37 -0600 Subject: [PATCH] Remove AIModerationCog and update load_all_cogs to skip rp_messages.py --- cogs/aimod.py | 9 --------- commands.py | 1 + 2 files changed, 1 insertion(+), 9 deletions(-) delete mode 100644 cogs/aimod.py diff --git a/cogs/aimod.py b/cogs/aimod.py deleted file mode 100644 index 7685937..0000000 --- a/cogs/aimod.py +++ /dev/null @@ -1,9 +0,0 @@ -from discord.ext import commands - -from .aimod_cog import AIModerationCog - - -async def setup(bot: commands.Bot): - """Load the AIModerationCog.""" - await bot.add_cog(AIModerationCog(bot)) - print("AIModerationCog has been loaded.") diff --git a/commands.py b/commands.py index efb9f9c..c66fcbe 100644 --- a/commands.py +++ b/commands.py @@ -28,6 +28,7 @@ async def load_all_cogs(bot: commands.Bot, skip_cogs: Optional[List[str]] = None and not filename.endswith("_config.py") and not filename.startswith("femdom") and not filename == "VoiceGatewayCog.py" + and not filename == "rp_messages.py" ): # Special check for welcome_cog.py if filename == "welcome_cog.py":