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.'); } };