feat: refactor Radio cog and update dependencies
feat: update lyric commands to utilize discord's Components v2
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user