make sure awards are ordered by price

pull/124/head
Aevann 2023-02-18 16:28:18 +02:00
parent 7c35e1d5a9
commit a5b006e9ad
1 changed files with 27 additions and 26 deletions

View File

@ -443,6 +443,33 @@ AWARDS = {
"ghost": False,
"enabled": True,
},
#for non-rdrama sites
"owoify": {
"kind": "owoify",
"title": "OwOify",
"description": "OwOifies the recipient's comments for 6 hours.",
"icon": "fas fa-paw-simple",
"color": "text-purple",
"price": 500,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": SITE_NAME != 'rDrama',
},
"rainbow": {
"kind": "rainbow",
"title": "Rainbow",
"description": "Makes the recipient's comments and posts in rainbow text for 24 hours.",
"icon": "fas fa-cloud-rainbow",
"color": "text-pink",
"price": 500,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": SITE_NAME != 'rDrama',
},
"rehab": {
"kind": "rehab",
"title": "Rehab",
@ -731,32 +758,6 @@ AWARDS = {
"ghost": False,
"enabled": True,
},
#for non-rdrama sites
"owoify": {
"kind": "owoify",
"title": "OwOify",
"description": "OwOifies the recipient's comments for 6 hours.",
"icon": "fas fa-paw-simple",
"color": "text-purple",
"price": 500,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": SITE_NAME != 'rDrama',
},
"rainbow": {
"kind": "rainbow",
"title": "Rainbow",
"description": "Makes the recipient's comments and posts in rainbow text for 24 hours.",
"icon": "fas fa-cloud-rainbow",
"color": "text-pink",
"price": 500,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": SITE_NAME != 'rDrama',
},
}
AWARDS_ENABLED = {}