From e672513d33dd406b296c903d2175fdcd79aa6a63 Mon Sep 17 00:00:00 2001 From: Zac Herd Date: Wed, 12 Oct 2016 09:34:45 +0000 Subject: [PATCH] v0.16.3 updated to use change_presence instead of change_status --- bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot.py b/bot.py index 3e1112a..65fb9e0 100644 --- a/bot.py +++ b/bot.py @@ -33,7 +33,7 @@ from secret import token name = "Maki" # bot version -version = "v0.16.2" +version = "v0.16.3" # text shown by .help command helptext = """I am a bot written in Python by MrDetonia @@ -100,7 +100,7 @@ def on_ready(): # set "Now Playing" to print version game = discord.Game(name = version) - yield from client.change_status(game, False) + yield from client.change_presence(game=game) # called when message received @client.event