From d930141dc594b866c47292015f7643a8a49f2450 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Tue, 6 Sep 2022 06:54:59 +0200 Subject: [PATCH] same as last commit --- 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 1b45aacc8..65df9a64a 100644 --- a/files/routes/awards.py +++ b/files/routes/awards.py @@ -348,7 +348,7 @@ def award_thing(v, thing_type, id): if author.marsify: author.marsify += 21600 else: author.marsify = int(time.time()) + 21600 - if thing_type == 'comment' and not author.deflector: + if thing_type == 'comment' and (not author.deflector or v.id == AEVANN_ID): body = thing.body if author.owoify: body = owoify(body) body = marsify(body) @@ -366,7 +366,7 @@ def award_thing(v, thing_type, id): if author.owoify: author.owoify += 21600 else: author.owoify = int(time.time()) + 21600 - if thing_type == 'comment' and not author.deflector: + if thing_type == 'comment' and not (author.deflector or v.id == AEVANN_ID): body = thing.body body = owoify(body) if author.marsify: body = marsify(body)