diff --git a/src/client/voice/VoiceConnection.js b/src/client/voice/VoiceConnection.js index d5fb3147c..611ef6829 100644 --- a/src/client/voice/VoiceConnection.js +++ b/src/client/voice/VoiceConnection.js @@ -32,6 +32,12 @@ class VoiceConnection extends EventEmitter { */ this.channel = pendingConnection.channel; + /** + * Whether we're currently transmitting audio + * @type {boolean} + */ + this.speaking = false; + /** * An array of Voice Receivers that have been created for this connection * @type {VoiceReceiver[]}