Fix shop double-spend exploit.

remotes/1693045480750635534/spooky-22
Snakes 2022-09-16 04:43:20 -04:00
parent bb1852709b
commit 54cae4b570
Signed by: Snakes
GPG Key ID: E745A82778055C7E
1 changed files with 2 additions and 2 deletions

View File

@ -67,10 +67,10 @@ def buy(v, award):
if request.values.get("mb"):
if v.procoins < price: return {"error": "Not enough marseybux."}, 400
if award == "grass": return {"error": "You can't buy the grass award with marseybux."}, 403
v.procoins -= price
v.charge_account('procoins', price)
else:
if v.coins < price: return {"error": "Not enough coins."}, 400
v.coins -= price
v.charge_account('coins', price)
v.coins_spent += price
if v.coins_spent >= 1000000:
badge_grant(badge_id=73, user=v)