From 3ca6f487c6ca47ce061754e8cc16295db2ed4a30 Mon Sep 17 00:00:00 2001 From: ErrorNoInternet Date: Sat, 11 Apr 2026 17:33:22 -0400 Subject: [PATCH] fix(queue/skip): properly deal with player --- errornocord/commands/voice/queue.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/errornocord/commands/voice/queue.py b/errornocord/commands/voice/queue.py index 7e76f32..8480a00 100644 --- a/errornocord/commands/voice/queue.py +++ b/errornocord/commands/voice/queue.py @@ -251,7 +251,8 @@ async def skip(message): if not command_allowed(message): return - if not players[message.guild.id] and not players[message.guild.id].queue: + if players[message.guild.id] and not players[message.guild.id].queue: + del players[message.guild.id] message.guild.voice_client.stop() await utils.reply( message,