JaBa/commands/Music/resume.js

34 lines
807 B
JavaScript
Raw Normal View History

2021-12-10 21:39:54 +05:00
const Command = require("../../base/Command.js");
class Resume extends Command {
constructor (client) {
super(client, {
name: "resume",
dirname: __dirname,
enabled: true,
guildOnly: true,
aliases: [],
memberPermissions: [],
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS" ],
nsfw: false,
ownerOnly: false,
cooldown: 3000
2021-12-10 21:39:54 +05:00
});
}
async run (message) {
const queue = this.client.player.getQueue(message);
const voice = message.member.voice.channel;
2021-12-11 01:11:50 +05:00
if (!voice) return message.error("music/play:NO_VOICE_CHANNEL");
if (!queue) return message.error("music:play:NOT_PLAYING");
2021-12-10 21:39:54 +05:00
// Gets the current song
await this.client.player.resume(message);
2021-12-11 01:11:50 +05:00
2021-12-10 21:39:54 +05:00
// Send the embed in the current channel
message.sendT("music/resume:SUCCESS");
}
2021-12-11 01:11:50 +05:00
};
2021-12-10 21:39:54 +05:00
module.exports = Resume;