feat: refactor Radio cog and update dependencies

feat: update lyric commands to utilize discord's Components v2
This commit is contained in:
2025-10-08 15:45:38 -04:00
parent 80cc3dc1e8
commit 190eb8acd2
4 changed files with 455 additions and 63 deletions

View File

@@ -25,10 +25,11 @@ cogs_list: list[str] = [
"sing",
"meme",
"lovehate",
"radio",
"ollama",
# "radio",
]
bot_activity = discord.CustomActivity(name="I made cookies!")
bot_activity = discord.CustomActivity(name="I LIKE TURTLES")
load_dotenv()
@@ -42,7 +43,7 @@ class Havoc(bridge.Bot):
command_prefix=".",
intents=intents,
owner_ids=OWNERS,
activity=bot_activity,
activity=None,
help_command=commands.MinimalHelpCommand(),
)
self.BOT_CHANIDS = BOT_CHANIDS
@@ -83,6 +84,7 @@ class Havoc(bridge.Bot):
@commands.Cog.listener()
async def on_ready(self) -> None:
"""Run on Bot Ready"""
await self.change_presence(activity=None)
logging.info("%s online!", self.user)