1
0
Fork 0
mirror of synced 2024-06-27 02:31:04 +12:00

Removed the counter for the deletion of rules

This commit is contained in:
Phxntxm 2016-07-30 14:17:36 -05:00
parent 67476c3e2f
commit c914fcc6b9

View file

@ -186,14 +186,14 @@ class Mod:
if rule is None:
await self.bot.say("Your rules are:\n```{}```Please provide the rule number you would like to remove (just the number)".format(list_rules))
for i in range(3):
msg = await self.bot.wait_for_message(timeout=60.0, author=ctx.message.author, channel = ctx.message.channel, check = lambda m: m.content.isdigit())
if msg is None:
await self.bot.say("You took too long...it's just a number, seriously? Try typing a bit quicker")
return
del server_rules[int(msg.content)-1]
rules[ctx.message.server.id] = server_rules
config.saveContent('rules',rules)
msg = await self.bot.wait_for_message(timeout=60.0, author=ctx.message.author, channel = ctx.message.channel, check = lambda m: m.content.isdigit())
if msg is None:
await self.bot.say("You took too long...it's just a number, seriously? Try typing a bit quicker")
return
del server_rules[int(msg.content)-1]
rules[ctx.message.server.id] = server_rules
config.saveContent('rules',rules)
try:
del server_rules[rule-1]