diff options
Diffstat (limited to 'bot')
| -rw-r--r-- | bot/exts/evergreen/trivia_quiz.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/bot/exts/evergreen/trivia_quiz.py b/bot/exts/evergreen/trivia_quiz.py index 43d786bc..bd3b136e 100644 --- a/bot/exts/evergreen/trivia_quiz.py +++ b/bot/exts/evergreen/trivia_quiz.py @@ -371,7 +371,7 @@ class TriviaQuiz(commands.Cog):                          ctx.channel,                          answers,                          question_dict, -                        self.question_limit - len(done_question) +                        self.question_limit - len(done_question) + 1                      )                      await asyncio.sleep(1) @@ -403,7 +403,7 @@ class TriviaQuiz(commands.Cog):                      ctx.channel,                      answers,                      question_dict, -                    self.question_limit - len(done_question) +                    self.question_limit - len(done_question) + 1                  )                  await self.send_score(ctx.channel, self.game_player_scores[ctx.channel.id]) | 
