refactor(VoiceWebSocket): use connection.client in favour of connection.voiceManager.client

This commit is contained in:
NotSugden
2020-02-26 19:20:38 +00:00
parent 485a6430a8
commit 69d022cb3a

View File

@@ -35,7 +35,7 @@ class VoiceWebSocket extends EventEmitter {
* @readonly
*/
get client() {
return this.connection.voiceManager.client;
return this.connection.client;
}
shutdown() {