From b238cb8826d8929b74692ec494d98cbce6c6e9d3 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 20 Mar 2024 01:23:09 -0400 Subject: [PATCH] Fix --- commands/util-voice/stop.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/util-voice/stop.js b/commands/util-voice/stop.js index 4b37a35c..51ecdf7b 100644 --- a/commands/util-voice/stop.js +++ b/commands/util-voice/stop.js @@ -21,6 +21,7 @@ module.exports = class StopCommand extends Command { return msg.reply(`I am not currently playing audio in this server.`); } this.client.dispatchers.get(msg.guild.id).stop(); + this.client.dispatchers.delete(msg.guild.id); return msg.reply('Stopped playing.'); } };