From 71f3a2c24cf15e91286d0bc3cc4f3cae480c0154 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Wed, 7 Sep 2022 00:25:29 +0200 Subject: [PATCH] buff vamp house award --- files/helpers/const.py | 4 ++-- files/routes/awards.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/files/helpers/const.py b/files/helpers/const.py index 9f76a3e38..9da73c860 100644 --- a/files/helpers/const.py +++ b/files/helpers/const.py @@ -800,10 +800,10 @@ HOUSE_AWARDS = { "Vampire": { "kind": "Vampire", "title": "Bite", - "description": "Turns the recipient into a vampire for 24 hours.", + "description": "Turns the recipient into a vampire for 3 days.", "icon": "fas fa-bat", "color": "text-gray", - "price": 777 + "price": 400 }, "Racist": { "kind": "Racist", diff --git a/files/routes/awards.py b/files/routes/awards.py index 65df9a64a..ecc825956 100644 --- a/files/routes/awards.py +++ b/files/routes/awards.py @@ -355,8 +355,8 @@ def award_thing(v, thing_type, id): thing.body_html = sanitize(body, limit_pings=5, marsified=True) g.db.add(thing) elif "Vampire" in kind and kind == v.house: - if author.bite: author.bite += 86400 - else: author.bite = int(time.time()) + 86400 + if author.bite: author.bite += 259200 + else: author.bite = int(time.time()) + 259200 author.old_house = author.house author.house = 'Vampire' elif "Racist" in kind and kind == v.house: