From 6ad67b97c3af8e1ea27cf83d83a080c0e263f333 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Tue, 13 Dec 2022 21:51:07 +0200 Subject: [PATCH] reduce all-seeing eye price to 5k --- files/helpers/config/awards.py | 20 ++++++++++---------- files/routes/awards.py | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/files/helpers/config/awards.py b/files/helpers/config/awards.py index 39843dcd1..98054d890 100644 --- a/files/helpers/config/awards.py +++ b/files/helpers/config/awards.py @@ -518,22 +518,22 @@ AWARDS = { "deflectable": False, "cosmetic": False }, - "grass": { - "kind": "grass", - "title": "Grass", - "description": "Ban the recipient for 30 days (if they provide a timestamped picture of them touching grass/snow/sand/ass to the admins, they will get unbanned immediately)", - "icon": "fas fa-seedling", - "color": "text-success", - "price": 10000, - "deflectable": True, - "cosmetic": False - }, "eye": { "kind": "eye", "title": "All-Seeing Eye", "description": "Gives the recipient the ability to view private profiles.", "icon": "fas fa-eye", "color": "text-silver", + "price": 5000, + "deflectable": True, + "cosmetic": False + }, + "grass": { + "kind": "grass", + "title": "Grass", + "description": "Ban the recipient for 30 days (if they provide a timestamped picture of them touching grass/snow/sand/ass to the admins, they will get unbanned immediately)", + "icon": "fas fa-seedling", + "color": "text-success", "price": 10000, "deflectable": True, "cosmetic": False diff --git a/files/routes/awards.py b/files/routes/awards.py index 108e72129..fdc66e062 100644 --- a/files/routes/awards.py +++ b/files/routes/awards.py @@ -117,7 +117,7 @@ def buy(v:User, award): g.db.add(v) - if CARP_ID and v.id != CARP_ID and og_price >= 10000: + if CARP_ID and v.id != CARP_ID and og_price >= 5000: send_repeatable_notification(CARP_ID, f"@{v.username} has bought a `{award_title}` award!")