forked from rDrama/rDrama
1
0
Fork 0

reduce all-seeing eye price to 5k

master
Aevann1 2022-12-13 21:51:07 +02:00
parent 057f40469c
commit 6ad67b97c3
2 changed files with 11 additions and 11 deletions

View File

@ -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

View File

@ -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!")