Explorar el Código

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

tags/v1.4.1
Roxie Gibson hace 6 años
padre
commit
f3d6c6e6fe
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      cogs/trivia.py

+ 1
- 1
cogs/trivia.py Ver fichero

@@ -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")

Cargando…
Cancelar
Guardar