From e5da38d19c5b6513080ec35ae35bf6a6d11adc3a Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Sun, 18 Sep 2022 23:25:58 +0200 Subject: [PATCH] change bite award back to 24 hrs --- files/routes/awards.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/routes/awards.py b/files/routes/awards.py index 47a16e2c4a..3baf45c4a8 100644 --- a/files/routes/awards.py +++ b/files/routes/awards.py @@ -376,8 +376,8 @@ def award_thing(v, thing_type, id): thing.body_html = sanitize(body, limit_pings=5) g.db.add(thing) elif "Vampire" in kind and kind == v.house: - if author.bite: author.bite += 86400 * 3 - else: author.bite = int(time.time()) + 86400 * 3 + if author.bite: author.bite += 86400 + else: author.bite = int(time.time()) + 86400 if not author.old_house: author.old_house = author.house