From d9bfe0fa6b01587f133644593dc2c53f359210d6 Mon Sep 17 00:00:00 2001 From: Slipstream Date: Fri, 30 May 2025 22:20:28 -0600 Subject: [PATCH] feat: Add tts_provider_cog to the list of cogs loaded in main function --- gurt_bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gurt_bot.py b/gurt_bot.py index e37d154..05caa85 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.VoiceGatewayCog"]#, "cogs.profile_updater_cog"] + cogs = ["gurt.cog", "cogs.VoiceGatewayCog", "cogs.tts_provider_cog"]#, "cogs.profile_updater_cog"] for cog in cogs: try: await bot.load_extension(cog)