From 2c0ccf4d3f1d0dca8ea08f0840209fc5e4a2ef87 Mon Sep 17 00:00:00 2001 From: Zac Herd Date: Fri, 8 Apr 2016 19:16:31 +0100 Subject: [PATCH] Removed .bots and .version, replaced with .info, v0.11.1 --- bot.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/bot.py b/bot.py index 565f19d..3a0b690 100644 --- a/bot.py +++ b/bot.py @@ -25,7 +25,7 @@ from secret import email,pwd name = "Maki" # bot version -version = "v0.11.0" +version = "v0.11.1" # text shown by .help command helptext = """I am a bot written in Python by MrDetonia @@ -33,8 +33,7 @@ helptext = """I am a bot written in Python by MrDetonia My commands are: ``` .help - displays this text -.bots - prints bot info -.version - prints bot info +.info - prints bot info .upskirt - show a link to my source .whoami - displays your user info .whois - displays another user's info @@ -183,7 +182,7 @@ def on_message(message): json.dump(tells, fp) # parse messages for commands - if message.content.startswith('.bots') or message.content.startswith('.version'): + if message.content.startswith('.info'): # print bot info response = 'I am ' + name + ', a Discord bot by MrDetonia | ' + version + ' | Python 3.4 | discord.py ' + discord.__version__