diff options
| author | 2022-01-09 18:10:59 -0500 | |
|---|---|---|
| committer | 2022-02-09 18:13:37 -0500 | |
| commit | e7163dd5dd23ecc75d8b628262733510abf9d0d6 (patch) | |
| tree | 1640e59c7158afca5870fcd52833868960d764bd /bot/exts/events/trivianight/_game.py | |
| parent | preventing the number of points from reaching too high (diff) | |
use correct emoji name for .tn list
Diffstat (limited to 'bot/exts/events/trivianight/_game.py')
| -rw-r--r-- | bot/exts/events/trivianight/_game.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/events/trivianight/_game.py b/bot/exts/events/trivianight/_game.py index 0b5fe562..9d8b98c1 100644 --- a/bot/exts/events/trivianight/_game.py +++ b/bot/exts/events/trivianight/_game.py @@ -175,7 +175,7 @@ class TriviaNightGame: spaces = max(len(q.description) for q in self._all_questions) for question in self._all_questions: - visited, not_visited = ":checkmark:", ":x:" + visited, not_visited = ":white_check_mark:", ":x:" formatted_string += f"`Q{question.number}: {question.description}" \ f"{' ' * (spaces - len(question.description))}|`" \ f" {visited if question not in self._questions else not_visited}\n" |