eximiabots-radiox/commands/stop.js

17 lines
471 B
JavaScript
Raw Normal View History

2020-03-02 19:38:42 +00:00
module.exports = {
name: 'stop',
description: 'Stop command.',
2020-03-09 11:28:52 +00:00
alias: 's',
2020-03-02 19:38:42 +00:00
usage: '',
2020-03-08 14:54:57 +00:00
permission: 'none',
2020-03-02 19:38:42 +00:00
category: 'music',
execute(msg, args, client, Discord, command) {
2020-03-02 19:38:42 +00:00
const radio = client.radio.get(msg.guild.id);
2020-03-12 09:59:05 +00:00
if (client.funcs.check(client, msg, command)) {
radio.connection.dispatcher.destroy();
radio.voiceChannel.leave();
client.radio.delete(msg.guild.id);
msg.channel.send(client.messageEmojis["stop"] + client.messages.stop);
2020-03-12 09:59:05 +00:00
}
2020-03-02 19:38:42 +00:00
}
2020-03-08 14:54:57 +00:00
};