aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/trivia_quiz.py
diff options
context:
space:
mode:
authorGravatar Objectivitix <[email protected]>2021-05-12 14:23:24 -0300
committerGravatar GitHub <[email protected]>2021-05-12 14:23:24 -0300
commit8f4911ad75d0860c8710e977a3d6928378fd703e (patch)
tree4a566b174308b3e3e75d6ac8a7f3389e73bca274 /bot/exts/evergreen/trivia_quiz.py
parentmake the error embed change accordingly if DQL constant is modified (diff)
quality-of-life refinery
Diffstat (limited to 'bot/exts/evergreen/trivia_quiz.py')
-rw-r--r--bot/exts/evergreen/trivia_quiz.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/exts/evergreen/trivia_quiz.py b/bot/exts/evergreen/trivia_quiz.py
index 0b242947..cc1bb0bb 100644
--- a/bot/exts/evergreen/trivia_quiz.py
+++ b/bot/exts/evergreen/trivia_quiz.py
@@ -423,7 +423,7 @@ class TriviaQuiz(commands.Cog):
colour=Colours.blue,
title="Quiz game starting!",
description=(
- f"Each game consists of {self.question_limit + 1} questions.\n"
+ f"This game consists of {self.question_limit + 1} questions.\n"
"**Rules: **No cheating and have fun!\n"
f"**Category**: {category}"
),
@@ -555,13 +555,13 @@ class TriviaQuiz(commands.Cog):
"""Send the correct answer of a question to the game channel."""
info = question_dict.get("info", "")
- word = "is" if len(answers) == 1 else "are"
+ plurality = " is" if len(answers) == 1 else "s are"
embed = discord.Embed(
color=Colours.bright_green,
title=(
("You got it! " if answer_is_correct else "")
- + f"The correct answer {word} **`{', '.join(answers)}`**\n"
+ + f"The correct answer{word} **`{', '.join(answers)}`**\n"
),
description="",
)