diff options
| author | 2021-11-29 18:36:59 -0500 | |
|---|---|---|
| committer | 2022-02-09 18:13:37 -0500 | |
| commit | 5d84b7947dbaee89e91ed4e8743b7bee3ec9b677 (patch) | |
| tree | b0235ae76a9950ab2882c3460082ed8b508c11fe | |
| parent | add logic to make sure that the event can't be ended during a question (diff) | |
forgot 
eturn after error message
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/events/trivianight/trivianight.py | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/bot/exts/events/trivianight/trivianight.py b/bot/exts/events/trivianight/trivianight.py index 1fffe9fe..981b6937 100644 --- a/bot/exts/events/trivianight/trivianight.py +++ b/bot/exts/events/trivianight/trivianight.py @@ -220,6 +220,7 @@ class TriviaNight(commands.Cog):          question_list = self.questions.list_questions()          if isinstance(question_list, Embed):              await ctx.send(embed=question_list) +            return          await ctx.send(question_list) | 
