1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-07-07 04:20:49 +00:00

Update 3.3

This commit is contained in:
MatteZ02
2020-04-29 14:41:16 +03:00
parent 07fd7df141
commit 1158d32910
10 changed files with 54 additions and 11 deletions

View File

@ -20,11 +20,11 @@ module.exports = {
return msg.channel.send(client.messages.noSongs);
if (point < 0) return msg.channel.send(client.messages.cantSkipToCurrent);
for (let i = 0; i < point; i++) {
queue.songs.shift();
queue.prevSongs.push(queue.songs.shift());
}
queue.endReason = "skipto";
queue.time = 0;
queue.connection.dispatcher.end();
}
},
};
};