diff --git a/commands/AddResourceBounty.py b/commands/AddResourceBounty.py index cfe600a..76f38ec 100644 --- a/commands/AddResourceBounty.py +++ b/commands/AddResourceBounty.py @@ -95,7 +95,7 @@ def check(m): if cur_amt < amt: await msg.channel.send(msg.author.mention + " Not enough guild points! You currently have **{0}GP**.".format(cur_amt)) return - resp = await channel.send("<@{0}> !tr {0} {1} {2}".format(self.spritebot.config.points, msg.author.id, amt, msg.channel.id)) + resp = await channel.send("<@{0}> !tr {1} {2} {3}".format(self.spritebot.config.points, msg.author.id, amt, msg.channel.id)) try: wait_msg = await self.spritebot.client.wait_for('message', check=check, timeout=10.0)