1
0
Fork 0
mirror of synced 2024-06-29 03:30:57 +12:00

corrected syntax error

This commit is contained in:
Phxntxm 2016-07-30 07:31:55 -05:00
parent 70be37b770
commit acdab526a9

View file

@ -21,7 +21,7 @@ def userBattling(ctx):
if ctx.message.author.id in battling.values() or ctx.message.author.id in battling.keys():
return True
if str(ctx.command) == 'battle':
return ctx.message.mentions[0].id in battling.values() or ctx.message.mentions[0].id in battling.keys():
return ctx.message.mentions[0].id in battling.values() or ctx.message.mentions[0].id in battling.keys()
return False