Browse Source

fixed wrong type in the list command being queried.

tags/v2.2.0
Roxie Gibson 5 years ago
parent
commit
37cbf0390c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      roxbot/cogs/customcommands.py

+ 1
- 1
roxbot/cogs/customcommands.py View File

with db_session: with db_session:
no_prefix_commands = select(c for c in CCCommands if c.type == 0 and c.guild_id == ctx.guild.id)[:] no_prefix_commands = select(c for c in CCCommands if c.type == 0 and c.guild_id == ctx.guild.id)[:]
prefix_commands = select(c for c in CCCommands if c.type == 1 and c.guild_id == ctx.guild.id)[:] prefix_commands = select(c for c in CCCommands if c.type == 1 and c.guild_id == ctx.guild.id)[:]
embed_commands = select(c for c in CCCommands if c.type == 3and c.guild_id == ctx.guild.id)[:]
embed_commands = select(c for c in CCCommands if c.type == 2 and c.guild_id == ctx.guild.id)[:]


def add_commands(commands, paginator): def add_commands(commands, paginator):
if not commands: if not commands:

Loading…
Cancel
Save