JaBa/commands/Music/pause.js
2021-12-11 01:11:50 +05:00

34 lines
No EOL
802 B
JavaScript

const Command = require("../../base/Command.js");
class Pause extends Command {
constructor (client) {
super(client, {
name: "pause",
dirname: __dirname,
enabled: true,
guildOnly: true,
aliases: [],
memberPermissions: [],
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS" ],
nsfw: false,
ownerOnly: false,
cooldown: 5000
});
}
async run (message) {
const queue = this.client.player.getQueue(message);
const voice = message.member.voice.channel;
if (!voice) return message.error("music/play:NO_VOICE_CHANNEL");
if (!queue) return message.error("music:play:NOT_PLAYING");
// Gets the current song
await this.client.player.pause(message);
// Send the embed in the current channel
message.sendT("music/pause:SUCCESS");
}
};
module.exports = Pause;