From cbc79df4aa898f2dec52fa12c67e6ccdb64ea7ae Mon Sep 17 00:00:00 2001 From: Loic Bersier Date: Sun, 30 Dec 2018 03:21:28 +0100 Subject: [PATCH] corrected typo --- commands/general/ttsvc.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/commands/general/ttsvc.js b/commands/general/ttsvc.js index e1388019..c7292e2b 100644 --- a/commands/general/ttsvc.js +++ b/commands/general/ttsvc.js @@ -62,14 +62,12 @@ class TtsvcCommand extends Command { // If user say "stop" make the bot leave voice channel if (text == 'stop') { voiceChannel.leave(); - message.channel.send('I leaved the channel'); + message.channel.send('I left the channel'); } else voiceChannel.join().then(connection => { const dispatcher = connection.playStream('./ttsvc.mp3'); // End at then end of the audio stream - dispatcher.on('end', () => setTimeout(function(){ - voiceChannel.leave(); - }, 2000)); + dispatcher.on('end', () => voiceChannel.leave()) }); }); });