mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-10 05:40:24 +00:00
13 lines
795 B
JavaScript
13 lines
795 B
JavaScript
module.exports = function (client, msg, command) {
|
|
const radio = client.radio.get(msg.guild.id);
|
|
const permissions = msg.channel.permissionsFor(msg.author);
|
|
if (!radio || !radio.playing) return msg.channel.send('<:redx:674263474704220182> There is nothing playing!');
|
|
if (msg.author.id !== client.config.devId) {
|
|
if (msg.member.voice.channel !== radio.voiceChannel) return msg.channel.send(`<:redx:674263474704220182> I'm sorry but you need to be in the same voice channel as RadioX to use this command!`);
|
|
if (!permissions.has(command.permission)) {
|
|
msg.channel.send(`<:redx:674263474704220182> You need the \`${command.permission}\` permission to use this command!`);
|
|
return false;
|
|
} else return true;
|
|
} else return true;
|
|
};
|