From c4a4a21326dcdea0a1a9ee5ea0a5cd0680f796e7 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Mon, 18 Oct 2021 22:43:34 +0200 Subject: [PATCH] fd --- files/routes/awards.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/files/routes/awards.py b/files/routes/awards.py index 54d2536b8..7ba92c097 100755 --- a/files/routes/awards.py +++ b/files/routes/awards.py @@ -317,22 +317,22 @@ def award_comment(cid, v): send_notification(NOTIFICATIONS_ACCOUNT, c.author, msg) if kind == "ban": - author = comment.author - link = f"[this comment]({comment.permalink})" + author = c.author + link = f"[this comment]({c.permalink})" if not author.is_suspended: - author.ban(reason=f"one-day ban award used by @{v.username} on /comment/{comment.id}", days=1) + author.ban(reason=f"one-day ban award used by @{v.username} on /comment/{c.id}", days=1) send_notification(NOTIFICATIONS_ACCOUNT, author, f"Your account has been suspended for a day for {link}. It sucked and you should feel bad.") elif author.unban_utc > 0: author.unban_utc += 24*60*60 g.db.add(author) send_notification(NOTIFICATIONS_ACCOUNT, author, f"Your account has been suspended for yet another day for {link}. Seriously man?") elif kind == "grass": - author = comment.author + author = c.author author.is_banned = AUTOJANNY_ACCOUNT - author.ban_reason = f"grass award used by @{v.username} on /comment/{comment.id}" + author.ban_reason = f"grass award used by @{v.username} on /comment/{c.id}" g.db.add(author) - link = f"[this comment]({comment.permalink})" + link = f"[this comment]({c.permalink})" send_notification(NOTIFICATIONS_ACCOUNT, author, f"Your account has been suspended permanently for {link}. You must [provide the admins](/contact) a timestamped picture of you touching grass to get unbanned!") c.author.received_award_count += 1