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:
FireController1847
2017-08-04 01:21:18 -06:00
committed by Crawl
parent ba1c257bb2
commit 580e066a36

View File

@@ -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}