mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-09 23:00:18 +00:00
13 lines
349 B
JavaScript
13 lines
349 B
JavaScript
module.exports = {
|
|
name: 'stop',
|
|
description: 'Stop command.',
|
|
alias: 'none',
|
|
usage: '',
|
|
permission: 'none',
|
|
category: 'music',
|
|
execute(msg, args, client, Discord, prefix, command) {
|
|
const radio = client.radio.get(msg.guild.id);
|
|
radio.connection.dispatcher.end();
|
|
msg.channel.send('<:stop:674685626108477519> Stopped the music!');
|
|
}
|
|
}; |