1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 01:21:56 +00:00

Update play.js

This commit is contained in:
MatteZ02 2020-03-03 22:58:37 +02:00
parent 75ce4f42bc
commit 36d4dc2c75

View File

@ -12,7 +12,7 @@ module.exports = async function (guild, song, client, seek, play) {
}
const dispatcher = serverQueue.connection
.play(await ytdl(song.url, { filter: "audio", highWaterMark: 1 << 25, volume: false }), { bitrate: 1024, passes: 10, volume: 1, bassboost: serverQueue.bass })
.play(await ytdl(song.url, { filter: "audio", highWaterMark: 1 << 25, volume: false }), { seek: seek, bitrate: 1024, passes: 10, volume: 1, bassboost: serverQueue.bass })
.on("end", () => {
client.dispatcher.finish(client, serverQueue.endReason, guild);
});