From c23ee7c3ac9aef93e99786b620e7c95d19e62d52 Mon Sep 17 00:00:00 2001 From: MatteZ02 <47610069+MatteZ02@users.noreply.github.com> Date: Tue, 3 Mar 2020 22:44:04 +0200 Subject: [PATCH] Update play.js --- struct/funcs/play.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/struct/funcs/play.js b/struct/funcs/play.js index 954d237f..c37f2acc 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 }), { seek: seek, bitrate: 1024, passes: 10, volume: 1, bassboost: serverQueue.bass }) + .play(await ytdl(song.url, { filter: "audio", highWaterMark: 1 << 25, volume: false }), { bitrate: 1024, passes: 10, volume: 1, bassboost: serverQueue.bass }) .on("end", () => { client.dispatcher.finish(client, serverQueue.endReason, guild); });