1
0
Fork 0
mirror of synced 2024-06-26 18:21:15 +12:00

Corrected how to look for the prefix

This commit is contained in:
phxntxm 2016-10-17 12:51:02 -05:00
parent 475cbb4cb5
commit 838a9c5607

View file

@ -137,10 +137,11 @@ class Interaction:
battles[ctx.message.author.id] = player2.id
self.battles[ctx.message.server.id] = battles
fmt = "{0.mention} has challenged you to a battle {1.mention}\n{1.prefix}accept or {1.prefix}decline"
fmt = "{0.message.author.mention} has challenged you to a battle {1.mention}\n" \
"{0.prefix}accept or {0.prefix}decline"
# Add a call to turn off battling, if the battle is not accepted/declined in 3 minutes
self.bot.loop.call_later(180, self.battling_off, ctx)
await self.bot.say(fmt.format(ctx.message.author, player2))
await self.bot.say(fmt.format(ctx, player2))
@commands.command(pass_context=True, no_pm=True)
@checks.custom_perms(send_messages=True)