瀏覽代碼

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 年之前
父節點
當前提交
fd9e62fa45
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. +2
    -2
      roxbot/cogs/voice.py

+ 2
- 2
roxbot/cogs/voice.py 查看文件

@@ -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:

Loading…
取消
儲存