From 67476c3e2fac164e87c82dc61e5f759ddce8f927 Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Sat, 30 Jul 2016 14:16:58 -0500 Subject: [PATCH] Added a message for the bot to send when a rule is removed successfully --- cogs/mod.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cogs/mod.py b/cogs/mod.py index abd45b1..7d28cae 100644 --- a/cogs/mod.py +++ b/cogs/mod.py @@ -199,6 +199,7 @@ class Mod: del server_rules[rule-1] rules[ctx.message.server.id] = server_rules config.saveContent('rules',rules) + await self.bot.say("I have just removed that rule from your list of rules!") except IndexError: await self.bot.say("That is not a valid rule number, try running the command again. Your current rules are:\n```{}```".format(list_rules))