diff options
author | 2021-11-04 16:04:05 -0400 | |
---|---|---|
committer | 2022-02-09 18:13:37 -0500 | |
commit | 00dcdee6d5b4fbbb763af6138974337e04421a5d (patch) | |
tree | fa71c1b01de6535765026de797326f20fe06b2c0 | |
parent | bug fixes (diff) |
change checkmark to white_check_mark
-rw-r--r-- | bot/exts/events/trivianight/_questions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/events/trivianight/_questions.py b/bot/exts/events/trivianight/_questions.py index 8f2f5571..f433baa8 100644 --- a/bot/exts/events/trivianight/_questions.py +++ b/bot/exts/events/trivianight/_questions.py @@ -217,7 +217,7 @@ class Questions: for question in self.questions: formatted_string += f"`Q{question['number']}: {question['description']}" \ f"{' ' * (spaces - len(question['description']) + 2)}" \ - f"|` {':x:' if not question.get('visited') else ':checkmark:'}\n" + f"|` {':x:' if not question.get('visited') else ':white_check_mark:'}\n" return formatted_string.strip() |