From bb9d842f81f38737bb9860f136891e4f2b61e1bb Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Tue, 28 Jun 2022 02:28:59 +0200 Subject: [PATCH] disable progressive stack too --- files/routes/awards.py | 1 + 1 file changed, 1 insertion(+) diff --git a/files/routes/awards.py b/files/routes/awards.py index abedd70902..1043708b16 100644 --- a/files/routes/awards.py +++ b/files/routes/awards.py @@ -271,6 +271,7 @@ def award_thing(v, thing_type, id): author.fish = True badge_grant(badge_id=90, user=author) elif kind == "progressivestack": + abort(403) if author.progressivestack: author.progressivestack += 21600 else: author.progressivestack = int(time.time()) + 21600 badge_grant(user=author, badge_id=94)