mirror of
https://github.com/danbulant/discord.js
synced 2026-05-26 13:32:04 +00:00
Init pause variable on VoiceBroadcast (#1751)
* Init pause variable on VoiceBroadcast * Move it back. Could have swore I did this.
This commit is contained in:
parent
ba1c257bb2
commit
580e066a36
1 changed files with 5 additions and 0 deletions
|
|
@ -35,6 +35,11 @@ class VoiceBroadcast extends VolumeInterface {
|
|||
this.client = client;
|
||||
this._dispatchers = new Collection();
|
||||
this._encoders = new Collection();
|
||||
/**
|
||||
* Whether playing is paused
|
||||
* @type {boolean}
|
||||
*/
|
||||
this.paused = false;
|
||||
/**
|
||||
* The audio transcoder that this broadcast uses
|
||||
* @type {Prism}
|
||||
|
|
|
|||
Loading…
Reference in a new issue