diff options
author | 2021-05-09 21:31:10 -0300 | |
---|---|---|
committer | 2021-05-09 21:31:10 -0300 | |
commit | d2e1d52c762b73e240dabdbee1004e73315a5b4e (patch) | |
tree | 7b6cbddfe770b67750234404e4ef76f92d336fef /bot/exts/evergreen/trivia_quiz.py | |
parent | increase readability, fix lint failure (diff) |
forgot to increment by one, fixed
Diffstat (limited to 'bot/exts/evergreen/trivia_quiz.py')
-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]) |