1
0
Fork 0
Loic Bersier 6 years ago
parent 216d91a4bd
commit aac6274f53

@ -64,12 +64,11 @@ module.exports = class ttsvcCommand extends Command {
message.say('I leaved the channel'); message.say('I leaved the channel');
} else } else
voiceChannel.join().then(connection => { voiceChannel.join().then(connection => {
const stream = "./tts.mp3"
const dispatcher = connection.playStream('./tts.mp3'); const dispatcher = connection.playStream('./tts.mp3');
// End at then end of the audio stream // End at then end of the audio stream
setTimeout(function(){ setTimeout(function(){
dispatcher.on('end', () => voiceChannel.leave()); dispatcher.on('end', () => voiceChannel.leave());
}, 5000); }, 3000);
}); });
}); });
}); });

Loading…
Cancel
Save