diff options
author | 2021-10-26 07:41:09 -0400 | |
---|---|---|
committer | 2022-02-09 18:13:36 -0500 | |
commit | 314cde47e37688fd60173a6f7586f0ab2ba2002b (patch) | |
tree | 17cb15165696aedf06e7451c40f9dcd0b5abe268 /bot | |
parent | Brevity with iterables (diff) |
Improving word choice (answer [x] rather than answer choice [x])
Co-authored-by: Bluenix <[email protected]>
Diffstat (limited to 'bot')
-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 49fc894e..58b6abdf 100644 --- a/bot/exts/events/trivianight/_questions.py +++ b/bot/exts/events/trivianight/_questions.py @@ -84,7 +84,7 @@ class QuestionView(View): color=Colours.python_yellow ) for label, answer in zip("ABCD", self.current_question["answers"]): - question_embed.add_field(name=f"Choice {label}", value=answer, inline=False) + question_embed.add_field(name=f"Answer {label}", value=answer, inline=False) for button in self.buttons: button.set_time() |