diff --git a/commands.py b/commands.py index 3334fd8..b182419 100644 --- a/commands.py +++ b/commands.py @@ -23,7 +23,8 @@ async def load_all_cogs(bot: commands.Bot, skip_cogs: Optional[List[str]] = None not filename.startswith("profile_updater") and \ not filename.startswith("neru") and \ not filename.endswith("_base_cog.py") and \ - not filename.startswith("femdom"): + not filename.startswith("femdom") and \ + not filename == "VoiceGatewayCog.py": # Special check for welcome_cog.py if filename == "welcome_cog.py": print(f"Found welcome_cog.py, attempting to load it...") diff --git a/gurt_bot.py b/gurt_bot.py index 8878ef5..e37d154 100644 --- a/gurt_bot.py +++ b/gurt_bot.py @@ -59,7 +59,7 @@ async def main(minimal_prompt: bool = False): async with bot: # List of cogs to load # Updated path for the refactored GurtCog - cogs = ["gurt.cog"]#, "cogs.profile_updater_cog"] + cogs = ["gurt.cog", "cogs.VoiceGatewayCog"]#, "cogs.profile_updater_cog"] for cog in cogs: try: await bot.load_extension(cog)