From 9bda14830b5e2ba316d20cd358532a3f0605eb45 Mon Sep 17 00:00:00 2001 From: phixxy Date: Wed, 19 Jul 2023 23:18:04 -0700 Subject: [PATCH] fixed stupid bug in rsgp --- sparkytron3000.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sparkytron3000.py b/sparkytron3000.py index 354f30d..770f267 100644 --- a/sparkytron3000.py +++ b/sparkytron3000.py @@ -718,7 +718,7 @@ async def rsgp(ctx, amount): output += str(amount) + ' rs3 gp would cost: $' + str(round(rwtcost,2)) + " (RWT)\n" output += str(amount) + ' rs3 gp would cost: $' + str(round(bondcost,2)) + " (Bonds)\n" output += str(amount) + ' dollars spent on rs3 gp would be: ' + str(round(dollar_gp,2)) + " (RS3 GP)\n" - output += str(amount) + ' osrs gp would cost: $' + str(round(rwtcost) + " (RWT)\n" + output += str(amount) + ' osrs gp would cost: $' + str(round(rwtcost,2)) + " (RWT)\n" output += str(amount) + ' osrs gp would cost: $' + str(round(bondcost,2)) + " (Bonds)\n" output += str(amount) + ' dollars spent on osrs gp would be: ' + str(round(dollar_gp,2)) + " (OSRS GP)\n" await ctx.send(output)