From d06ca3d44b2151a6b03a927a47a45a4dc596f317 Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Fri, 9 Oct 2020 10:31:19 -0700 Subject: [PATCH] setting the bots status to show the !help command --- app/bot.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/bot.py b/app/bot.py index e5daaf58..8d22653c 100755 --- a/app/bot.py +++ b/app/bot.py @@ -39,6 +39,8 @@ def generate_embed(embed_url=None, embed_title=None, embed_description=None, emb @bot.event 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) # @bot.event # async def on_member_join(member):