From 33815d83656aaa51af3dca9ba811c673fe8ac5bc Mon Sep 17 00:00:00 2001 From: TLSM Date: Sat, 2 Jul 2022 21:34:32 -0400 Subject: [PATCH] Add badge for Checkmark award users. --- files/routes/awards.py | 1 + 1 file changed, 1 insertion(+) diff --git a/files/routes/awards.py b/files/routes/awards.py index f9f9a5524..5cd38931d 100644 --- a/files/routes/awards.py +++ b/files/routes/awards.py @@ -296,6 +296,7 @@ def award_thing(v, thing_type, id): badge_grant(user=author, badge_id=128) elif kind == "checkmark": author.verified = "Verified" + badge_grant(user=author, badge_id=150) if author.received_award_count: author.received_award_count += 1 else: author.received_award_count = 1