2019-08-02 08:32:00 +00:00
|
|
|
module.exports = {
|
|
|
|
name: 'pause',
|
|
|
|
description: 'Pause command.',
|
|
|
|
cooldown: 5,
|
|
|
|
execute(message, args, client, RichEmbed) {
|
|
|
|
const serverQueue = client.queue.get(message.guild.id);
|
|
|
|
const permissions = message.channel.permissionsFor(message.author);
|
|
|
|
if (serverQueue && serverQueue.playing === true) {
|
2019-08-14 12:26:33 +00:00
|
|
|
if (message.author.id !== '360363051792203779') {
|
|
|
|
if (!permissions.has('MANAGE_MESSAGES')) return message.channel.send(':x: You need the `MANAGE_MESSAGES` permission to pause the music!');
|
|
|
|
}
|
2019-08-02 08:32:00 +00:00
|
|
|
serverQueue.playing = false;
|
|
|
|
serverQueue.connection.dispatcher.pause();
|
|
|
|
return message.channel.send('⏸ Paused the music for you!');
|
|
|
|
}
|
2019-08-14 12:26:33 +00:00
|
|
|
return message.channel.send(':x: There is nothing playing.');
|
2019-08-02 08:32:00 +00:00
|
|
|
}
|
|
|
|
};
|