fix help blurb

This commit is contained in:
2021-06-15 00:46:44 +02:00
parent f6cbb87967
commit 8451fb4e3e

View File

@@ -82,7 +82,7 @@ async def on_message(message):
@client.event
async def on_ready():
print('### Active with id %s as %s ###' % (client.user.id,client.user.name) )
activity = discord.Activity(name='Listening to !help', type=discord.ActivityType.listening)
activity = discord.Activity(name='!help', type=discord.ActivityType.listening)
await client.change_presence(activity=activity)
if __name__ == '__main__':