1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-03-13 17:01:30 +00:00

17 lines
450 B
JavaScript
Raw Normal View History

2020-02-05 22:02:53 +02:00
module.exports = async function (client, reason, guild) {
2020-03-14 18:38:02 +02:00
const queue = client.queue.get(guild.id);
queue.playing = false;
2020-03-04 22:27:14 +02:00
if (reason === "seek") {
2020-02-05 22:02:53 +02:00
return;
}
2020-03-14 18:38:02 +02:00
if (!queue.songLooping) {
if (queue.looping) {
queue.songs.push(queue.songs[0]);
2020-02-05 22:02:53 +02:00
}
2020-03-04 22:27:14 +02:00
2020-03-14 18:38:02 +02:00
queue.votes = 0;
queue.voters = [];
queue.songs.shift();
2020-02-05 22:02:53 +02:00
}
2020-03-14 18:38:02 +02:00
client.funcs.play(guild, queue.songs[0], client, 0, true);
2020-02-05 22:02:53 +02:00
};