diff options
-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 013ffb0a..2d337b40 100644 --- a/bot/exts/events/trivianight/_questions.py +++ b/bot/exts/events/trivianight/_questions.py @@ -147,7 +147,7 @@ class QuestionView(View): field_title = ( (":white_check_mark: " if is_correct_answer else "") - + f"{people_answered} players (or {people_answered / len(guesses) * 100:.1f}% of players) chose" + + f"{people_answered} players ({people_answered / len(guesses) * 100:.1f}%) chose" ) # The `ord` function is used here to change the letter to its corresponding position |