From 233f5c8b25c7674b4b8ed941c3acb017245f8fc9 Mon Sep 17 00:00:00 2001 From: Ayu <77532758+iayushanand@users.noreply.github.com> Date: Sun, 1 Feb 2026 04:38:52 +0530 Subject: [PATCH] Remove presence update and login message Remove bot presence change and login print statement. --- cogs/ticket.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cogs/ticket.py b/cogs/ticket.py index a859aa3..7265567 100644 --- a/cogs/ticket.py +++ b/cogs/ticket.py @@ -12,8 +12,6 @@ async def before_ready(self): self.bot.add_view(CreateButton()) self.bot.add_view(CloseButton()) self.bot.add_view(TrashButton()) - await self.bot.change_presence(activity=discord.Activity(type = discord.ActivityType.listening, name = "Doghouse Game's Heart 😳")) - print(f"Logged in as: {self.bot.user.name}") @commands.command(name="ticket") @commands.has_permissions(administrator=True) @@ -27,4 +25,4 @@ async def ticket(self, ctx): ) async def setup(bot): - await bot.add_cog(TicketCog(bot)) \ No newline at end of file + await bot.add_cog(TicketCog(bot))