Fixed unset field of VoiceConnection (#879)

* Fixed unset field of VoiceConnection

Fixed a typo

* Update VoiceConnection.js
This commit is contained in:
Marko Kajzer
2016-11-08 02:35:49 +09:00
committed by Schuyler Cebulskie
parent cdf66f8011
commit c02eb2f171

View File

@@ -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[]}