1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 04:31:56 +00:00
musix-oss/commands/pause.js

22 lines
1016 B
JavaScript
Raw Normal View History

2019-08-02 08:32:00 +00:00
module.exports = {
name: 'pause',
description: 'Pause command.',
cooldown: 5,
2019-10-10 13:43:04 +00:00
execute(message, args, client, Discord, prefix) {
2019-08-02 08:32:00 +00:00
const serverQueue = client.queue.get(message.guild.id);
const permissions = message.channel.permissionsFor(message.author);
2019-10-10 13:43:04 +00:00
const { voiceChannel } = message.member;
2019-08-02 08:32:00 +00:00
if (serverQueue && serverQueue.playing === true) {
2019-10-10 13:43:04 +00:00
if (voiceChannel !== serverQueue.voiceChannel) return message.channel.send(':x: I\'m sorry but you need to be in the same voiceChannel as Musix to pause the music!');
if (message.author.id !== '360363051792203779') {
2019-10-11 08:48:50 +00:00
if (client.global.db.guilds[message.guild.id].permissions === true) {
2019-10-10 13:43:04 +00:00
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();
2019-10-10 13:43:04 +00:00
return message.channel.send('⏸ Paused the music!');
2019-08-02 08:32:00 +00:00
}
return message.channel.send(':x: There is nothing playing.');
2019-08-02 08:32:00 +00:00
}
};