mirror of
https://github.com/BluemediaGER/muse.git
synced 2024-11-23 09:15:29 +01:00
parent
20a030e307
commit
1ddd19dbb9
|
@ -441,13 +441,17 @@ export default class {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.voiceConnection.on('disconnect', this.onVoiceConnectionDisconnect.bind(this));
|
if (this.voiceConnection.listeners('disconnect').length === 0) {
|
||||||
|
this.voiceConnection.on('disconnect', this.onVoiceConnectionDisconnect.bind(this));
|
||||||
|
}
|
||||||
|
|
||||||
if (!this.dispatcher) {
|
if (!this.dispatcher) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.dispatcher.on('speaking', this.onVoiceConnectionSpeaking.bind(this));
|
if (this.dispatcher.listeners('speaking').length === 0) {
|
||||||
|
this.dispatcher.on('speaking', this.onVoiceConnectionSpeaking.bind(this));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private onVoiceConnectionDisconnect(): void {
|
private onVoiceConnectionDisconnect(): void {
|
||||||
|
|
Loading…
Reference in a new issue