diff options
author | 2021-05-12 11:53:04 -0300 | |
---|---|---|
committer | 2021-05-12 11:53:04 -0300 | |
commit | cb3b7a394f5fe60f75279d7ac9e4cdb47b267a20 (patch) | |
tree | 4c0023de7bad678cb4a4cd6f9d6273ed163fce7d | |
parent | 0 as an input to `questions` would now also raise an error (diff) |
make the error embed change accordingly if DQL constant is modified
-rw-r--r-- | bot/exts/evergreen/trivia_quiz.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/trivia_quiz.py b/bot/exts/evergreen/trivia_quiz.py index c2f891e2..0b242947 100644 --- a/bot/exts/evergreen/trivia_quiz.py +++ b/bot/exts/evergreen/trivia_quiz.py @@ -268,7 +268,7 @@ class TriviaQuiz(commands.Cog): await ctx.send( embed=self.make_error_embed( "You must choose to complete at least one question. " - "(or enter nothing for the default value of 7 questions)" + f"(or enter nothing for the default value of {DEFAULT_QUESTION_LIMIT + 1} questions)" ) ) return |