Browse Source

Fixed some trivia bugs, added some additional features to the printsettings command.

tags/v1.4.1
Roxie Gibson 6 years ago
parent
commit
f3d6c6e6fe
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cogs/trivia.py

+ 1
- 1
cogs/trivia.py View File

@@ -214,7 +214,7 @@ class Trivia:
@commands.group(aliases=["tr"])
async def trivia(self, ctx):
"""Command group for the Roxbot Trivia game."""
if ctx.invoked_subcommand == self.start and not self.games[ctx.channel.id]:
if ctx.invoked_subcommand == self.start and ctx.channel.id not in self.games:
embed = discord.Embed(colour=0xDEADBF)
embed.set_footer(text="Roxbot Trivia uses the Open Trivia DB, made and maintained by Pixeltail Games LLC. Find out more at https://opentdb.com/")
embed.set_image(url="https://i.imgur.com/yhRVl9e.png")

Loading…
Cancel
Save