diff options
author | 2021-05-09 18:05:01 -0300 | |
---|---|---|
committer | 2021-05-09 18:05:01 -0300 | |
commit | 84f2b8783a28e2d90d601cbab33c6c3a439040bf (patch) | |
tree | 2b18d2ae51bdab9b62c23dd8bc74a017bf9eaf04 /bot/exts/evergreen/trivia_quiz.py | |
parent | changed error embed color to `bot.constants.Colours.soft_red` (diff) |
add a space at end of string on line 245
Diffstat (limited to 'bot/exts/evergreen/trivia_quiz.py')
-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 4496082e..2bd8f7d4 100644 --- a/bot/exts/evergreen/trivia_quiz.py +++ b/bot/exts/evergreen/trivia_quiz.py @@ -242,7 +242,7 @@ class TriviaQuiz(commands.Cog): # Stop game if running. if self.game_status[ctx.channel.id] is True: await ctx.send( - "Game is already running..." + "Game is already running... " f"do `{self.bot.command_prefix}quiz stop`" ) |