diff --git a/struct/funcs/play.js b/struct/funcs/play.js index c37f2acc..954d237f 100644 --- a/struct/funcs/play.js +++ b/struct/funcs/play.js @@ -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); });