aboutsummaryrefslogtreecommitdiffstats
path: root/bot
diff options
context:
space:
mode:
authorGravatar Shom770 <[email protected]>2022-01-10 22:03:19 -0500
committerGravatar Shom770 <[email protected]>2022-02-09 18:13:38 -0500
commit203923de98d5063d5fa8b1951a7fb01103a66957 (patch)
tree1008e437fce9f771f82a6c22ebc72d0bbce7a4c9 /bot
parent3 second countdown before question starts. (diff)
change .. to ...
Diffstat (limited to 'bot')
-rw-r--r--bot/exts/events/trivianight/_questions.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/exts/events/trivianight/_questions.py b/bot/exts/events/trivianight/_questions.py
index 2d337b40..d6beced9 100644
--- a/bot/exts/events/trivianight/_questions.py
+++ b/bot/exts/events/trivianight/_questions.py
@@ -53,7 +53,7 @@ class AnswerButton(Button):
if guess[1]:
await interaction.response.send_message(
embed=Embed(
- title="Confirming that..",
+ title="Confirming that...",
description=f"You chose answer {self.label}.",
color=Colours.soft_green
),
@@ -64,7 +64,7 @@ class AnswerButton(Button):
# indicates that they changed it this time around.
await interaction.response.send_message(
embed=Embed(
- title="Confirming that..",
+ title="Confirming that...",
description=f"You changed your answer to answer {self.label}.",
color=Colours.soft_green
),
@@ -120,7 +120,7 @@ class QuestionView(View):
labels = ascii_uppercase[:len(self.question.answers)]
answer_embed = Embed(
- title=f"The correct answer for Question {self.question.number} was..",
+ title=f"The correct answer for Question {self.question.number} was...",
description=self.question.correct
)