From 5d0c3742b020c4f3c047ea72bb3a627c34bcb285 Mon Sep 17 00:00:00 2001 From: Aevann Date: Sun, 19 Feb 2023 00:43:51 +0200 Subject: [PATCH] change the grass award message to be clearer --- files/routes/awards.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/awards.py b/files/routes/awards.py index 521f42884e..8c743b7f2c 100644 --- a/files/routes/awards.py +++ b/files/routes/awards.py @@ -250,7 +250,7 @@ def award_thing(v, thing_type, id): author.is_banned = AUTOJANNY_ID author.ban_reason = f"grass award used by @{v.username} on {link3}" author.unban_utc = int(time.time()) + 30 * 86400 - send_repeatable_notification(author.id, f"Your account has been banned permanently for {link}. You must [provide the admins](/contact) a timestamped picture of you touching grass/snow/sand/ass to get unbanned!") + send_repeatable_notification(author.id, f"@{v.username} gave you the grass award on {link} and as a result you have been banned! You must [send the admins](/contact) a timestamped picture of you touching grass/snow/sand/ass to get unbanned!") elif kind == "pin": if not FEATURES['PINS']: abort(403) if thing.is_banned: abort(403)