From 8ea8af2c4e924d59a0d56ee4c38e8dc9f0fe04a9 Mon Sep 17 00:00:00 2001 From: Frostbyte <71291438+Frostbyte0x70@users.noreply.github.com> Date: Sat, 5 Sep 2026 18:19:49 +0200 Subject: [PATCH] Fix bounty GP subtraction --- commands/AddResourceBounty.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)