diff options
| author | 2021-04-06 14:48:59 +0200 | |
|---|---|---|
| committer | 2021-04-06 14:48:59 +0200 | |
| commit | 75af5eff5329cf015309f2664bd1af9eb4f2c95d (patch) | |
| tree | f809af49fa9d8f4b90355a0b79d81d722e2011c1 | |
| parent | Add a !tp get_review command to get the nomination text without posting it (diff) | |
Use emoji names in nomination body
This caused unicode errors in Discord attachment previews.
| -rw-r--r-- | bot/exts/recruitment/talentpool/_review.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/recruitment/talentpool/_review.py b/bot/exts/recruitment/talentpool/_review.py index c46df4bcc..e38b6bf19 100644 --- a/bot/exts/recruitment/talentpool/_review.py +++ b/bot/exts/recruitment/talentpool/_review.py @@ -114,7 +114,7 @@ class Reviewer: vote_request = ( "*Refer to their nomination and infraction histories for further details*.\n" f"*Please react {seen_emoji} if you've seen this post." - " Then react 👍 for approval, or 👎 for disapproval*." + " Then react :+1: for approval, or :-1: for disapproval*." ) review = "\n\n".join(part for part in (opening, current_nominations, review_body, vote_request)) |