mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 08:10:18 +00:00
a64f9d2325
All messages reworked.
19 lines
569 B
JavaScript
19 lines
569 B
JavaScript
module.exports = {
|
|
name: 'pause',
|
|
alias: 'none',
|
|
usage: '',
|
|
description: 'Pause the currently playing music.',
|
|
onlyDev: false,
|
|
permission: 'MANAGE_MESSAGES',
|
|
category: 'music',
|
|
execute(msg, args, client, Discord, prefix, command) {
|
|
const serverQueue = client.queue.get(msg.guild.id);
|
|
if (client.funcs.check(client, msg, command)) {
|
|
if (serverQueue.paused) return msg.channel.send(client.messages.alreadyPaused);
|
|
serverQueue.paused = true;
|
|
serverQueue.connection.dispatcher.pause(true);
|
|
return msg.channel.send(client.messages.paused);
|
|
}
|
|
}
|
|
};
|