From ac2c6f5070215c59e6c061afb44c120943d63be6 Mon Sep 17 00:00:00 2001 From: leo60228 Date: Mon, 31 Dec 2018 20:46:42 -0500 Subject: [PATCH] Use "Listening to .help" instead of "Playing .help" --- Robocop.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Robocop.py b/Robocop.py index 1ec8046..a8cc43f 100755 --- a/Robocop.py +++ b/Robocop.py @@ -97,7 +97,9 @@ async def on_ready(): data_files = [discord.File(fpath) for fpath in wanted_jsons] await bot.botlog_channel.send(msg, files=data_files) - await bot.change_presence(activity=discord.Game(name=game_name)) + activity = discord.Activity(name=game_name, type=discord.ActivityType.listening) + + await bot.change_presence(activity=activity) @bot.event