mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 08:10:18 +00:00
playlist patch
This commit is contained in:
parent
698bb0eb9b
commit
3d391a685a
11
commands/playlist/delete.js
Normal file
11
commands/playlist/delete.js
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
module.exports = {
|
||||||
|
name: 'setpremium',
|
||||||
|
async execute(message, args, client, Discord, prefix) {
|
||||||
|
client.global.db.playlists[message.guild.id] = {
|
||||||
|
songs: [],
|
||||||
|
firstSong: undefined,
|
||||||
|
saved: false,
|
||||||
|
};
|
||||||
|
message.channel.send(':white_check_mark: This guild is now premium! :tada:')
|
||||||
|
}
|
||||||
|
};
|
@ -5,7 +5,6 @@ module.exports = {
|
|||||||
if (!args[2]) return message.channel.send(':x: Please provide a number on the position of the song that you wan\'t to remove!');
|
if (!args[2]) return message.channel.send(':x: Please provide a number on the position of the song that you wan\'t to remove!');
|
||||||
const songNum = parseInt(args[2]) - 1;
|
const songNum = parseInt(args[2]) - 1;
|
||||||
if (isNaN(songNum)) return message.channel.send(':x: You need to enter a __number__!');
|
if (isNaN(songNum)) return message.channel.send(':x: You need to enter a __number__!');
|
||||||
if (songNum === 0) return message.channel.send(':x: You can not remove the currently playing song!');
|
|
||||||
if (parseInt(songNum) > client.global.db.playlists[message.guild.id].songs.size) return message.channel.send(`:x: There is only ${serverQueue.songs.size} amount of songs in the queue!`);
|
if (parseInt(songNum) > client.global.db.playlists[message.guild.id].songs.size) return message.channel.send(`:x: There is only ${serverQueue.songs.size} amount of songs in the queue!`);
|
||||||
message.channel.send(`🗑️ removed \`${client.global.db.playlists[message.guild.id].songs[songNum].title}\` from the playlist!`);
|
message.channel.send(`🗑️ removed \`${client.global.db.playlists[message.guild.id].songs[songNum].title}\` from the playlist!`);
|
||||||
return client.global.db.playlists[message.guild.id].songs.splice(songNum, 1);
|
return client.global.db.playlists[message.guild.id].songs.splice(songNum, 1);
|
||||||
|
Loading…
Reference in New Issue
Block a user