From d679695f602d4c03d5e19d97ee63f10cd7f4fb2a Mon Sep 17 00:00:00 2001 From: teesh3rt Date: Thu, 13 Mar 2025 21:10:43 +0200 Subject: [PATCH] feat: make the bot have a presence, cuz funny --- src/exts/essential.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/exts/essential.py b/src/exts/essential.py index a50d9a3..1d56d1a 100644 --- a/src/exts/essential.py +++ b/src/exts/essential.py @@ -22,6 +22,11 @@ class Essential(commands.Cog): logger.debug("Syncing commands...") await self.bot.tree.sync() logger.debug("Commands synced!") + await self.bot.change_presence( + activity=discord.Activity( + name="all your slash commands", type=discord.ActivityType.listening + ) + ) logger.info(f"Logged in as {self.bot.user.name} ({self.bot.user.id})")