1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-11-10 02:00:20 +00:00

Updated looping

This commit is contained in:
MatteZ02 2019-10-12 12:49:24 +03:00
parent 8c117edd1e
commit 970ec44de8
5 changed files with 5 additions and 9 deletions

2
.gitignore vendored
View File

@ -1,4 +1,6 @@
.env
serviceAccount.json
package.json
package-lock.json
.vscode/
node_modules/

View File

@ -14,12 +14,10 @@ module.exports = {
}
}
if (!serverQueue.looping) {
client.secondaryQueue = [...serverQueue.songs]
serverQueue.looping = true;
message.channel.send(':repeat: Looping the queue now!');
} else {
serverQueue.looping = false;
client.secondaryQueue = [];
message.channel.send(':repeat: No longer looping the queue!');
}
} else {

View File

@ -35,9 +35,6 @@ module.exports = async function (video, message, voiceChannel, client, playlist
}
} else {
serverQueue.songs.push(song);
if (serverQueue.looping) {
client.secondaryQueue.push(song);
}
if (playlist) return undefined;
return message.channel.send(`:white_check_mark: **${song.title}** has been added to the queue!`);
}

View File

@ -17,10 +17,10 @@ module.exports = async function (guild, song, client, message, seek) {
} else {
console.log(reason);
}
serverQueue.songs.shift();
if (serverQueue.looping && serverQueue.songs.length === 0) {
serverQueue.songs = [...client.secondaryQueue];
if (serverQueue.looping) {
serverQueue.songs.push(serverQueue.songs[0]);
}
serverQueue.songs.shift();
client.funcs.play(guild, serverQueue.songs[0], client, message);
});
dispatcher.setVolume(serverQueue.volume / 10);

View File

@ -25,7 +25,6 @@ client.commands = new Discord.Collection();
client.events = new Discord.Collection();
client.cooldowns = new Discord.Collection();
client.queue = new Map();
client.secondaryQueue = [];
client.funcs = {};
client.funcs.handleVideo = require('./funcs/handleVideo.js');