From e0abd1f7b8417e548a35fd6f4768b7e5b9c0f881 Mon Sep 17 00:00:00 2001 From: Snowflake107 Date: Fri, 11 Jun 2021 15:23:47 +0545 Subject: [PATCH] VoiceSubscription#playStream: return self --- src/VoiceInterface/VoiceSubscription.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/VoiceInterface/VoiceSubscription.ts b/src/VoiceInterface/VoiceSubscription.ts index e41edc2..4ae9829 100644 --- a/src/VoiceInterface/VoiceSubscription.ts +++ b/src/VoiceInterface/VoiceSubscription.ts @@ -113,6 +113,8 @@ class VoiceSubscription extends EventEmitter { */ playStream(resource: AudioResource) { this.audioPlayer.play(resource); + + return this; } }