diff --git a/src/client/voice/dispatcher/StreamDispatcher.js b/src/client/voice/dispatcher/StreamDispatcher.js index f4f6b96b1..f2c2ab0fb 100644 --- a/src/client/voice/dispatcher/StreamDispatcher.js +++ b/src/client/voice/dispatcher/StreamDispatcher.js @@ -214,6 +214,11 @@ class StreamDispatcher extends Writable { this.count++; } + _final(callback) { + this._writeCallback = null; + callback(); + } + _playChunk(chunk) { if (this.player.dispatcher !== this || !this.player.voiceConnection.authentication.secretKey) return; this._setSpeaking(true);