update Queue#paused (#106)
This commit is contained in:
parent
e715e4fbe1
commit
e90ccec8fd
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ class Queue extends EventEmitter {
|
||||||
* Whether the stream is currently paused.
|
* Whether the stream is currently paused.
|
||||||
* @type {boolean}
|
* @type {boolean}
|
||||||
*/
|
*/
|
||||||
this.paused = true
|
this.paused = this.voiceConnection && this.voiceConnection.dispatcher && this.voiceConnection.dispatcher.paused;
|
||||||
/**
|
/**
|
||||||
* Whether the repeat mode is enabled.
|
* Whether the repeat mode is enabled.
|
||||||
* @type {boolean}
|
* @type {boolean}
|
||||||
|
|
Loading…
Reference in a new issue