From eedc097f3fc0cacd3a31de6ec42e53506f04584d Mon Sep 17 00:00:00 2001 From: Will Nelson Date: Thu, 24 Nov 2016 14:08:55 -0800 Subject: [PATCH] fix playConvertedStream (#923) --- src/client/voice/VoiceConnection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/voice/VoiceConnection.js b/src/client/voice/VoiceConnection.js index 3bd88fafe..e3f1c4c7d 100644 --- a/src/client/voice/VoiceConnection.js +++ b/src/client/voice/VoiceConnection.js @@ -259,7 +259,7 @@ class VoiceConnection extends EventEmitter { */ playConvertedStream(stream, { seek = 0, volume = 1, passes = 1 } = {}) { const options = { seek, volume, passes }; - return this.player.playPCMStream(stream, options); + return this.player.playPCMStream(stream, null, options); } /**