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-08-22 09:38:20 +00:00
|
|
|
category: 'radio',
|
2020-03-22 15:10:46 +00:00
|
|
|
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)) {
|
2020-04-02 07:23:25 +00:00
|
|
|
client.funcs.statisticsUpdate(client, msg.guild, radio);
|
2020-03-12 09:59:05 +00:00
|
|
|
radio.connection.dispatcher.destroy();
|
|
|
|
radio.voiceChannel.leave();
|
|
|
|
client.radio.delete(msg.guild.id);
|
2020-03-15 01:30:15 +00:00
|
|
|
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-04-02 07:23:25 +00:00
|
|
|
};
|