Ver código fonte

FIXES BUG WITH QUEUEING. SONGS NOW QUEUE CORRECTLY ALL THE TIME, 100% OF THE TIME. https://www.youtube.com/watch?v=S02BHmWPZNs

tags/v2.0.0
Roxie Gibson 5 anos atrás
pai
commit
fd9e62fa45
1 arquivos alterados com 2 adições e 2 exclusões
  1. +2
    -2
      roxbot/cogs/voice.py

+ 2
- 2
roxbot/cogs/voice.py Ver arquivo

@@ -228,8 +228,8 @@ class Voice:
voice = guild_settings.get(ctx.guild).voice
guild = ctx.guild

# Checks if invoker is in voice with the bot. Skips admins and mods and owner.
if not roxbot.checks._is_admin_or_mod(ctx) or from_queue:
# Checks if invoker is in voice with the bot. Skips admins and mods and owner and if the song was queued previously.
if not (roxbot.checks._is_admin_or_mod(ctx) or from_queue):
if not ctx.author.voice:
raise commands.CommandError("You're not in the same voice channel as Roxbot.")
if ctx.author.voice.channel != ctx.voice_client.channel:

Carregando…
Cancelar
Salvar