mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
Fixed unset field of VoiceConnection (#879)
* Fixed unset field of VoiceConnection Fixed a typo * Update VoiceConnection.js
This commit is contained in:
committed by
Schuyler Cebulskie
parent
cdf66f8011
commit
c02eb2f171
@@ -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[]}
|
||||
|
||||
Reference in New Issue
Block a user