1
0
Fork 0
mirror of synced 2024-06-02 18:54:33 +12:00

Changed timer on call_later back to 3 minutes, no testing needed anymore

This commit is contained in:
Phxntxm 2016-07-23 13:43:39 -05:00
parent ff27da7da0
commit 4b03e13495

View file

@ -79,9 +79,7 @@ class Interaction:
fmt = "{0.mention} has challenged you to a battle {1.mention}\n!accept or !decline"
await self.bot.say(fmt.format(ctx.message.author, player2))
config.loop.call_later(5,battlingOff,ctx.message.author.id)
#t = Timer(5, battlingOff, 'Thread-battle_off', [ctx.message.author.id])
#t.start()
config.loop.call_later(180,battlingOff,ctx.message.author.id)
@commands.command(pass_context=True, no_pm=True)
@checks.customPermsOrRole("none")