From aa0fb10e9883558c9de35bf9c784929d1ab124c6 Mon Sep 17 00:00:00 2001 From: lexio Date: Sat, 13 Apr 2024 15:46:26 +0000 Subject: [PATCH] eugh. playing statuses are so 172 AD. custom statuses are the new wave. --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 9568107..3861228 100644 --- a/bot.py +++ b/bot.py @@ -20,7 +20,7 @@ client = commands.Bot(command_prefix=prefix, intents=intents, help_command=None) @client.event async def on_ready(): - await client.change_presence(status=discord.Status.dnd, activity=discord.Activity(type=discord.ActivityType.watching, name="Nobody else cares, but WE do!!!")) + await client.change_presence(status=discord.Status.online, activity=discord.CustomActivity(name='Nobody else cares, but WE do!!!')) print(f'{client.user} is up running phinbot') watcher = Watcher(client, path='cogs', preload=True, debug=False)