mirror of
https://github.com/danbulant/discord.js
synced 2026-05-25 21:12:06 +00:00
Fixed unset field of VoiceConnection (#879)
* Fixed unset field of VoiceConnection Fixed a typo * Update VoiceConnection.js
This commit is contained in:
parent
cdf66f8011
commit
c02eb2f171
1 changed files with 6 additions and 0 deletions
|
|
@ -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[]}
|
||||
|
|
|
|||
Loading…
Reference in a new issue