diff --git a/src/commands/stop.js b/src/commands/stop.js index b8232a42..357cd035 100644 --- a/src/commands/stop.js +++ b/src/commands/stop.js @@ -9,7 +9,7 @@ module.exports = { execute(msg, args, client, Discord, command) { const queue = client.queue.get(msg.guild.id); if (client.funcs.check(client, msg, command)) { - if (msg.content.includes("-force")) { + if (msg.content.contains("-force")) { if (queue) { queue.voiceChannel.leave(); queue.exists = false;