From 9e71c3acaea95c8a3e5ccaa550ac2b73d0098844 Mon Sep 17 00:00:00 2001 From: MatteZ02 <47610069+MatteZ02@users.noreply.github.com> Date: Mon, 24 Feb 2020 20:30:55 +0200 Subject: [PATCH] Update check.js --- struct/funcs/check.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/struct/funcs/check.js b/struct/funcs/check.js index 0c235b51..37e83e2c 100644 --- a/struct/funcs/check.js +++ b/struct/funcs/check.js @@ -6,7 +6,7 @@ module.exports = function (client, msg, command) { if (msg.member.voice.channel !== serverQueue.voiceChannel) return msg.channel.send(`<:redx:674263474704220182> I'm sorry but you need to be in the same voice channel as Musix to use this command!`); if (client.global.db.guilds[msg.guild.id].permissions === true) { if (client.global.db.guilds[msg.guild.id].dj) { - if (!msg.member.roles.has(client.global.db.guilds[msg.guild.id].djrole)) { + if (!msg.member.cache.roles.cache.has(client.global.db.guilds[msg.guild.id].djrole)) { msg.channel.send('<:redx:674263474704220182> You need the `DJ` role to use this command!'); return false; } else return true;