From aa5619938c5f64b1fae6dcd5a08d5cc5c8496470 Mon Sep 17 00:00:00 2001 From: kek7198 Date: Sat, 4 Dec 2021 14:00:19 -0600 Subject: [PATCH] fix --- files/helpers/const.py | 8 ++++++++ files/routes/awards.py | 16 ++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/files/helpers/const.py b/files/helpers/const.py index 221e36564a..da0cbdaae2 100644 --- a/files/helpers/const.py +++ b/files/helpers/const.py @@ -624,6 +624,14 @@ AWARDS = { "color": "text-gray", "price": 300 }, + "candycane": { + "kind": "candycane", + "title": "Candy Cane", + "description": "???", + "icon": "fas fa-candy-cane", + "color": "text-gray", + "price": 500 + }, "mistletoe": { "kind": "mistletoe", "title": "Mistletoe", diff --git a/files/routes/awards.py b/files/routes/awards.py index 1dff45b95a..e8cf0bb0a7 100644 --- a/files/routes/awards.py +++ b/files/routes/awards.py @@ -219,6 +219,14 @@ def shop(v): "owned": 0, "price": 300 }, + "candycane": { + "kind": "candycane", + "title": "Candy Cane", + "description": "???", + "icon": "fas fa-candy-cane", + "color": "text-gray", + "price": 500 + }, "mistletoe": { "kind": "mistletoe", "title": "Mistletoe", @@ -415,6 +423,14 @@ def buy(v, award): "color": "text-gray", "price": 300 }, + "candycane": { + "kind": "candycane", + "title": "Candy Cane", + "description": "???", + "icon": "fas fa-candy-cane", + "color": "text-gray", + "price": 500 + }, "mistletoe": { "kind": "mistletoe", "title": "Mistletoe",