1
0
Fork 0
mirror of synced 2024-05-20 20:42:27 +12:00

Correct the element passed

This commit is contained in:
phxntxm 2017-05-02 15:15:30 -05:00
parent 85d1cdbe2d
commit 38cc78c09e

View file

@ -255,8 +255,8 @@ class Interaction:
battleP2 = ctx.message.author
# There's no need to update the stats for the members if they declined the battle
self.battling_off(player2=ctx)
await ctx.send("{0} has chickened out! What a loser~".format(battleP2.mention, battleP1.mention))
self.battling_off(player2=battleP1)
await ctx.send("{} has chickened out! What a loser~".format(battleP2.mention))
@commands.command()
@commands.guild_only()