diff options
author | 2021-10-26 07:42:10 -0400 | |
---|---|---|
committer | 2022-02-09 18:13:37 -0500 | |
commit | d0c46d4fdf603c08fe50b836e4f8cef0ba9b9430 (patch) | |
tree | af9e6324a45d5f6ea948464bc66a76f65e860656 | |
parent | Improving word choice (answer [x] rather than answer choice [x]) (diff) |
Use partial ellipsis in revealing answer
Co-authored-by: Bluenix <[email protected]>
-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 58b6abdf..f94b340f 100644 --- a/bot/exts/events/trivianight/_questions.py +++ b/bot/exts/events/trivianight/_questions.py @@ -102,7 +102,7 @@ class QuestionView(View): button.users_picked = self.users_picked answer_embed = Embed( - title=f"The correct answer for Question {self.current_question['number']} was", + title=f"The correct answer for Question {self.current_question['number']} was..", description=self.current_question["correct"], color=Colours.soft_green ) |