From c76e0972533d8fb949c9e5297faa66b7191c8675 Mon Sep 17 00:00:00 2001 From: ErrorNoInternet Date: Sat, 9 May 2026 01:20:07 -0400 Subject: [PATCH] fix(commands/voice/skip): check if players contains guild --- errornocord/commands/voice/queue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/errornocord/commands/voice/queue.py b/errornocord/commands/voice/queue.py index 7fa6572..9bf7740 100644 --- a/errornocord/commands/voice/queue.py +++ b/errornocord/commands/voice/queue.py @@ -255,7 +255,7 @@ async def skip(message): if not command_allowed(message): return - if players[message.guild.id] and not players[message.guild.id].queue: + if message.guild.id in players and not players[message.guild.id].queue: del players[message.guild.id] message.guild.voice_client.stop() await utils.reply(