remotes/1693045480750635534/spooky-22
Aevann1 2021-09-08 19:44:43 +02:00
parent 5d38bc99e3
commit 8f0704d6ba
1 changed files with 3 additions and 3 deletions

View File

@ -75,9 +75,9 @@ def shop(v):
awards = []
if v.patron:
for val in AWARDS.values():
if v.patron == 1: val["price"] = int(val["price"]["price"]*0.90)
elif v.patron == 2: val["price"] = int(val["price"]["price"]*0.85)
elif v.patron == 3: val["price"] = int(val["price"]["price"]*0.80)
if v.patron == 1: val["price"] = int(val["price"]*0.90)
elif v.patron == 2: val["price"] = int(val["price"]*0.85)
elif v.patron == 3: val["price"] = int(val["price"]*0.80)
elif v.patron == 4: val["price"] = int(val["price"]*0.75)
else: val["price"] = int(val["price"]*0.70)
awards.append(val)