From 580e066a36ce0d0626dba7d457977d3760909e00 Mon Sep 17 00:00:00 2001 From: FireController1847 Date: Fri, 4 Aug 2017 01:21:18 -0600 Subject: [PATCH] Init pause variable on VoiceBroadcast (#1751) * Init pause variable on VoiceBroadcast * Move it back. Could have swore I did this. --- src/client/voice/VoiceBroadcast.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/client/voice/VoiceBroadcast.js b/src/client/voice/VoiceBroadcast.js index 76513d86a..beb57fd06 100644 --- a/src/client/voice/VoiceBroadcast.js +++ b/src/client/voice/VoiceBroadcast.js @@ -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}