diff --git a/files/helpers/const.py b/files/helpers/const.py index bac57e516..059c8fdf6 100644 --- a/files/helpers/const.py +++ b/files/helpers/const.py @@ -254,7 +254,6 @@ if SITE_NAME == "Drama": "description": "???", "icon": "fas fa-book-dead", "color": "text-warning", - "owned": 0, "price": 500 }, "upsidedown": { @@ -263,7 +262,6 @@ if SITE_NAME == "Drama": "description": "???", "icon": "fad fa-lights-holiday", "color": "", - "owned": 0, "price": 400 }, "stab": { @@ -272,7 +270,6 @@ if SITE_NAME == "Drama": "description": "???", "icon": "fas fa-knife-kitchen", "color": "text-red", - "owned": 0, "price": 300 }, "ghosts": { @@ -281,7 +278,6 @@ if SITE_NAME == "Drama": "description": "???", "icon": "fas fa-ghost", "color": "text-white", - "owned": 0, "price": 200 }, "spiders": { @@ -290,7 +286,6 @@ if SITE_NAME == "Drama": "description": "???", "icon": "fas fa-spider", "color": "text-black", - "owned": 0, "price": 200 }, "fog": { @@ -299,7 +294,6 @@ if SITE_NAME == "Drama": "description": "???", "icon": "fas fa-smoke", "color": "text-gray", - "owned": 0, "price": 200 }, "lootbox": { @@ -308,7 +302,6 @@ if SITE_NAME == "Drama": "description": "???", "icon": "fas fa-treasure-chest", "color": "text-orange", - "owned": 0, "price": 1000 }, } diff --git a/files/routes/awards.py b/files/routes/awards.py index 2478f538b..0ee5ac283 100755 --- a/files/routes/awards.py +++ b/files/routes/awards.py @@ -431,7 +431,6 @@ def buy(v, award): "description": "???", "icon": "fas fa-book-dead", "color": "text-warning", - "owned": 0, "price": 500 }, "upsidedown": { @@ -440,7 +439,6 @@ def buy(v, award): "description": "???", "icon": "fad fa-lights-holiday", "color": "", - "owned": 0, "price": 400 }, "stab": { @@ -449,7 +447,6 @@ def buy(v, award): "description": "???", "icon": "fas fa-knife-kitchen", "color": "text-red", - "owned": 0, "price": 300 }, "ghosts": { @@ -458,7 +455,6 @@ def buy(v, award): "description": "???", "icon": "fas fa-ghost", "color": "text-white", - "owned": 0, "price": 200 }, "spiders": { @@ -467,7 +463,6 @@ def buy(v, award): "description": "???", "icon": "fas fa-spider", "color": "text-black", - "owned": 0, "price": 200 }, "fog": { @@ -476,7 +471,6 @@ def buy(v, award): "description": "???", "icon": "fas fa-smoke", "color": "text-gray", - "owned": 0, "price": 200 }, "lootbox": { @@ -485,7 +479,6 @@ def buy(v, award): "description": "???", "icon": "fas fa-treasure-chest", "color": "text-orange", - "owned": 0, "price": 1000 }, }