1
0
Fork 0
mirror of synced 2024-06-03 03:04:33 +12:00

Corrected syntax error

This commit is contained in:
Phxntxm 2016-07-23 09:44:25 -05:00
parent 538d4aa6df
commit c713f359e4

View file

@ -83,7 +83,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))
t = Timer(180, battlingOff, name='Thread-battle_off', {'player1':ctx.message.author.id})
t = Timer(180, battlingOff, 'Thread-battle_off', {'player1':ctx.message.author.id})
t.start()
@commands.command(pass_context=True, no_pm=True)