mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 16:43:31 +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._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}
|
||||
|
||||
Reference in New Issue
Block a user