From 768abe5f833f6edc0e4e723e60122e8ff2723bfa Mon Sep 17 00:00:00 2001 From: ein Date: Fri, 8 Jan 2021 13:17:56 -0800 Subject: [PATCH] fixing the bots status so they are active not idle --- app/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/bot.py b/app/bot.py index 30f32856..4e3a8979 100755 --- a/app/bot.py +++ b/app/bot.py @@ -40,7 +40,7 @@ def generate_embed(embed_url=None, embed_title=None, embed_description=None, emb async def on_ready(): print(f'{bot.user.name} has connected to Discord!') game = discord.Game("Type !help") - await bot.change_presence(status=discord.Status.idle, activity=game) + await bot.change_presence(status=discord.Status.online, activity=game) # @bot.event # async def on_member_join(member):