forked from Supositware/Haha-Yes
Replaced outdated message.say by message.channel.send
This commit is contained in:
parent
0be495c9f9
commit
f7e562fb37
5 changed files with 7 additions and 5 deletions
|
@ -32,6 +32,8 @@ class dectalkCommand extends Command {
|
|||
args.decMessage = args.decMessage.replace('\n', ' ');
|
||||
let decMessage = '[:phoneme on] ' + args.decMessage.replace(/(["'$`\\])/g,'\\$1');
|
||||
|
||||
console.log(decMessage);
|
||||
|
||||
if (process.platform == 'win32') {
|
||||
exec(`cd .\\dectalk && .\\say.exe -w dectalk.wav "${decMessage}"`)
|
||||
.catch(err => {
|
||||
|
|
|
@ -40,7 +40,7 @@ class dectalkvcCommand extends Command {
|
|||
})
|
||||
.then(async () => {
|
||||
const voiceChannel = message.member.voice.channel;
|
||||
if (!voiceChannel) return message.say('Please enter a voice channel first.');
|
||||
if (!voiceChannel) return message.channel.send('Please enter a voice channel first.');
|
||||
try {
|
||||
const connection = await voiceChannel.join();
|
||||
const dispatcher = connection.play('./dectalk/dectalk.wav');
|
||||
|
@ -64,7 +64,7 @@ class dectalkvcCommand extends Command {
|
|||
})
|
||||
.then(async () => {
|
||||
const voiceChannel = message.member.voice.channel;
|
||||
if (!voiceChannel) return message.say('Please enter a voice channel first.');
|
||||
if (!voiceChannel) return message.channel.send('Please enter a voice channel first.');
|
||||
try {
|
||||
loadingmsg.delete();
|
||||
const connection = await voiceChannel.join();
|
||||
|
|
|
@ -82,7 +82,7 @@ class samvcCommand extends Command {
|
|||
fs.writeFile(outputFilename, result.data, async function(err) {
|
||||
if (err) console.error(err);
|
||||
const voiceChannel = message.member.voice.channel;
|
||||
if (!voiceChannel) return message.say('Please enter a voice channel first.');
|
||||
if (!voiceChannel) return message.channel.send('Please enter a voice channel first.');
|
||||
try {
|
||||
const connection = await voiceChannel.join();
|
||||
const dispatcher = connection.play(outputFilename);
|
||||
|
|
|
@ -61,7 +61,7 @@ class TtsvcCommand extends Command {
|
|||
}
|
||||
|
||||
const voiceChannel = message.member.voice.channel;
|
||||
if (!voiceChannel) return message.say('Please enter a voice channel first.');
|
||||
if (!voiceChannel) return message.channel.send('Please enter a voice channel first.');
|
||||
try {
|
||||
const connection = await voiceChannel.join();
|
||||
const dispatcher = connection.play(output);
|
||||
|
|
|
@ -25,7 +25,7 @@ class BotAvatarCommand extends Command {
|
|||
let Attachment = (message.attachments).array();
|
||||
let image = args.image;
|
||||
if (!Attachment[0] && !image)
|
||||
return message.say('You didn\'t provide any images');
|
||||
return message.channel.send('You didn\'t provide any images');
|
||||
else if (image && !Attachment[0]) {
|
||||
this.client.user.setAvatar(image)
|
||||
.catch(() => message.channel.send('The link you provided dosen\'t work... is it a picture?'));
|
||||
|
|
Loading…
Reference in a new issue