forked from Supositware/Haha-Yes
testing fix
This commit is contained in:
parent
3d93d3d3c4
commit
f797af8bf8
1 changed files with 15 additions and 14 deletions
|
@ -37,8 +37,8 @@ class dectalkvcCommand extends Command {
|
||||||
},
|
},
|
||||||
}).then(async (result) => {
|
}).then(async (result) => {
|
||||||
const outputFilename = './dectalkvc.wav';
|
const outputFilename = './dectalkvc.wav';
|
||||||
fs.writeFileSync(outputFilename, result.data);
|
fs.writeFileSync(outputFilename, result.data)
|
||||||
|
.then(async () => {
|
||||||
const voiceChannel = message.member.voice.channel;
|
const voiceChannel = message.member.voice.channel;
|
||||||
if (!voiceChannel) return message.say('Please enter a voice channel first.');
|
if (!voiceChannel) return message.say('Please enter a voice channel first.');
|
||||||
try {
|
try {
|
||||||
|
@ -52,6 +52,7 @@ class dectalkvcCommand extends Command {
|
||||||
return message.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
|
return message.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue