mirror of
https://github.com/musix-org/musix-oss
synced 2025-06-16 18:56:00 +00:00
voiceStateUpdate
This commit is contained in:
@ -1,17 +1,14 @@
|
||||
module.exports = async function (client, reason, guild) {
|
||||
const serverQueue = client.queue.get(guild.id);
|
||||
serverQueue.playing = false;
|
||||
if (reason === "Stream is not generating quickly enough.") {
|
||||
console.log("Song ended");
|
||||
} else if (reason === "seek") {
|
||||
if (reason === "seek") {
|
||||
return;
|
||||
} else {
|
||||
console.log(reason);
|
||||
}
|
||||
if (!serverQueue.songLooping) {
|
||||
if (serverQueue.looping) {
|
||||
serverQueue.songs.push(serverQueue.songs[0]);
|
||||
}
|
||||
|
||||
serverQueue.votes = 0;
|
||||
serverQueue.voters = [];
|
||||
serverQueue.songs.shift();
|
||||
|
Reference in New Issue
Block a user