eximiabots-radiox/struct/check.js

20 lines
799 B
JavaScript
Raw Normal View History

2020-03-02 19:38:42 +00:00
module.exports = function (client, msg, command) {
let message = {};
2020-03-02 19:38:42 +00:00
const radio = client.radio.get(msg.guild.id);
const permissions = msg.channel.permissionsFor(msg.author);
if (!radio) {
msg.channel.send(client.messageEmojis["x"] + client.messages.notPlaying);
return false;
}
if (msg.member.voice.channel !== radio.voiceChannel) {
msg.channel.send(client.messageEmojis["x"] + client.messages.wrongVoiceChannel);
return false;
}
console.log(command.permission);
2020-03-12 22:53:23 +00:00
if (!permissions.has(command.permission)) {
message.noPerms = client.messages.noPerms.replace("%command.permission%", command.permission);
msg.channel.send(client.messageEmojis["x"] + message.noPerms);
2020-03-12 22:53:23 +00:00
return false;
2020-03-02 19:38:42 +00:00
} else return true;
};