2021-12-10 21:39:54 +05:00
|
|
|
const Command = require("../../base/Command.js"),
|
|
|
|
Discord = require("discord.js");
|
|
|
|
|
|
|
|
class Back extends Command {
|
2021-12-26 19:29:37 +05:00
|
|
|
constructor(client) {
|
2021-12-10 21:39:54 +05:00
|
|
|
super(client, {
|
|
|
|
name: "back",
|
|
|
|
dirname: __dirname,
|
|
|
|
enabled: true,
|
|
|
|
guildOnly: true,
|
2021-12-26 19:29:37 +05:00
|
|
|
aliases: ["previous"],
|
2021-12-10 21:39:54 +05:00
|
|
|
memberPermissions: [],
|
2021-12-26 19:29:37 +05:00
|
|
|
botPermissions: ["SEND_MESSAGES", "EMBED_LINKS"],
|
2021-12-10 21:39:54 +05:00
|
|
|
nsfw: false,
|
|
|
|
ownerOnly: false,
|
2022-01-01 00:50:09 +05:00
|
|
|
cooldown: 1000
|
2021-12-10 21:39:54 +05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-12-26 19:29:37 +05:00
|
|
|
async run(message, args, data) {
|
2021-12-10 21:39:54 +05:00
|
|
|
const voice = message.member.voice.channel;
|
2021-12-26 00:04:26 +05:00
|
|
|
const queue = this.client.player.getQueue(message);
|
2021-12-10 21:39:54 +05:00
|
|
|
|
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-26 00:04:26 +05:00
|
|
|
if (!queue.previousSongs[0]) return message.error("music/back:NO_PREV_SONG");
|
2021-12-10 21:39:54 +05:00
|
|
|
|
|
|
|
const embed = new Discord.MessageEmbed()
|
2022-01-03 23:20:33 +05:00
|
|
|
.setAuthor({ name: message.translate("music/back:DESCRIPTION") })
|
2021-12-10 21:39:54 +05:00
|
|
|
.setThumbnail(queue.tracks[0].thumbnail)
|
2022-01-03 23:20:33 +05:00
|
|
|
.setColor(data.config.embed.color)
|
|
|
|
.setFooter({ text: data.config.embed.footer });
|
2021-12-10 21:39:54 +05:00
|
|
|
|
2022-01-03 23:20:33 +05:00
|
|
|
const m = await message.channel.send({ embeds: [embed] });
|
2021-12-10 21:39:54 +05:00
|
|
|
|
2021-12-26 00:04:26 +05:00
|
|
|
this.client.player.previous(message);
|
|
|
|
embed.setDescription(message.translate("music/back:SUCCESS"));
|
2022-01-03 23:20:33 +05:00
|
|
|
m.edit({ embeds: [embed] });
|
2021-12-10 21:39:54 +05:00
|
|
|
}
|
2021-12-11 01:11:50 +05:00
|
|
|
};
|
2021-12-10 21:39:54 +05:00
|
|
|
|
2021-12-11 01:11:50 +05:00
|
|
|
module.exports = Back;
|