mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-18 12:33:30 +01: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:
committed by
Crawl
parent
ba1c257bb2
commit
580e066a36
@@ -35,6 +35,11 @@ class VoiceBroadcast extends VolumeInterface {
|
|||||||
this.client = client;
|
this.client = client;
|
||||||
this._dispatchers = new Collection();
|
this._dispatchers = new Collection();
|
||||||
this._encoders = new Collection();
|
this._encoders = new Collection();
|
||||||
|
/**
|
||||||
|
* Whether playing is paused
|
||||||
|
* @type {boolean}
|
||||||
|
*/
|
||||||
|
this.paused = false;
|
||||||
/**
|
/**
|
||||||
* The audio transcoder that this broadcast uses
|
* The audio transcoder that this broadcast uses
|
||||||
* @type {Prism}
|
* @type {Prism}
|
||||||
|
|||||||
Reference in New Issue
Block a user