From 471147080fa3283d3197e5a6a5a0b406981df6a8 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Sat, 5 Nov 2022 05:56:01 +0200 Subject: [PATCH] make award message better --- 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 339aa66967..5854a28b01 100644 --- a/files/routes/awards.py +++ b/files/routes/awards.py @@ -194,7 +194,7 @@ def award_thing(v, thing_type, id): msg = f"@{v.username} has given your [{thing_type}]({thing.shortlink}) the {AWARDS[kind]['title']} Award" if awarded_coins > 0: - msg += f" and got {awarded_coins} coins" + msg += f" and you have received {awarded_coins} coins as a result" msg += "!" if note: msg += f"\n\n> {note}" send_repeatable_notification(author.id, msg)