2020-02-05 20:02:53 +00:00
|
|
|
module.exports = {
|
|
|
|
name: 'remove',
|
|
|
|
alias: 'rm',
|
2020-02-24 18:41:40 +00:00
|
|
|
usage: '<song pos>',
|
2020-02-05 20:02:53 +00:00
|
|
|
description: 'Remove a song from the queue',
|
|
|
|
onlyDev: false,
|
|
|
|
permission: 'MANAGE_MESSAGES',
|
|
|
|
category: 'music',
|
|
|
|
execute(msg, args, client, Discord, prefix, command) {
|
|
|
|
const serverQueue = client.queue.get(msg.guild.id);
|
|
|
|
if (client.funcs.check(client, msg, command)) {
|
2020-03-12 11:56:31 +00:00
|
|
|
if (!args[1]) return msg.channel.send(client.messages.provideASong);
|
2020-03-03 20:24:41 +00:00
|
|
|
const pos = parseInt(args[1]);
|
2020-03-12 11:56:31 +00:00
|
|
|
if (isNaN(pos)) return msg.channel.send(client.messages.validNumber);
|
|
|
|
if (pos < 1) return msg.channel.send(client.messages.noSongs);
|
|
|
|
client.messages.queueLength = client.messages.queueLength.replace("%LENGTH%", serverQueue.songs.length);
|
|
|
|
if (pos > serverQueue.songs.length) return msg.channel.send(client.messages.queueLength);
|
|
|
|
client.messages.removed = client.messages.removed.replace("%SONG%", serverQueue.songs[pos].title);
|
|
|
|
msg.channel.send(client.messages.removed);
|
2020-02-05 20:02:53 +00:00
|
|
|
return serverQueue.songs.splice(pos, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|