diff --git a/commands/fun/ttsvc.js b/commands/fun/ttsvc.js
index 00b13498..f437a55a 100644
--- a/commands/fun/ttsvc.js
+++ b/commands/fun/ttsvc.js
@@ -66,9 +66,7 @@ module.exports = class ttsvcCommand extends Command {
                           voiceChannel.join().then(connection => {
                               const dispatcher = connection.playStream('./tts.mp3');
               //  End at then end of the audio stream
-                            setTimeout(function(){
                                 dispatcher.on('end', () => voiceChannel.leave());
-                            }, 2000);
                           });
             });
           });