aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts
diff options
context:
space:
mode:
authorGravatar Shom770 <[email protected]>2021-11-29 18:36:59 -0500
committerGravatar Shom770 <[email protected]>2022-02-09 18:13:37 -0500
commit5d84b7947dbaee89e91ed4e8743b7bee3ec9b677 (patch)
treeb0235ae76a9950ab2882c3460082ed8b508c11fe /bot/exts
parentadd logic to make sure that the event can't be ended during a question (diff)
forgot eturn after error message
Diffstat (limited to 'bot/exts')
-rw-r--r--bot/exts/events/trivianight/trivianight.py1
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)