forked from Supositware/Haha-Yes
This commit is contained in:
parent
c003e27609
commit
8c085d9e57
1 changed files with 2 additions and 2 deletions
|
@ -27,6 +27,8 @@ module.exports = class ttsvcCommand extends Command {
|
|||
if(blacklistJson[message.author.id])
|
||||
return blacklist(blacklistJson[message.author.id] , message)
|
||||
|
||||
voiceChannel.leave();
|
||||
|
||||
// Construct the request
|
||||
const request = {
|
||||
input: {text: text},
|
||||
|
@ -65,8 +67,6 @@ module.exports = class ttsvcCommand extends Command {
|
|||
} else
|
||||
voiceChannel.join().then(connection => {
|
||||
const dispatcher = connection.playStream('./tts.mp3');
|
||||
// End at then end of the audio stream
|
||||
dispatcher.on('end', () => voiceChannel.leave());
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue