diff --git a/commands/search/weather.js b/commands/search/weather.js index 717ea84f..7660da41 100644 --- a/commands/search/weather.js +++ b/commands/search/weather.js @@ -53,7 +53,7 @@ class WeatherCommand extends commando.Command { info.wind.speed, true); message.channel.sendEmbed(embed).catch(console.error); }).catch(err => { - message.reply(":x: Error! Make sure you typed the location correctly!"); + message.channel.sendMessage(":x: Error! Make sure you typed the location correctly!"); }); } } diff --git a/index.js b/index.js index 2ea79cf2..635f2dac 100644 --- a/index.js +++ b/index.js @@ -68,7 +68,7 @@ client.on('message', (message) => { message.channel.stopTyping(); }); } else { - message.reply(":x: Error! You are either not verified for Cleverbot, or banned from it. Please check #rules for a link to the forum to sign-up for Cleverbot."); + message.channel.sendMessage(":x: Error! You are either not verified for Cleverbot, or banned from it. Please check #rules for a link to the forum to sign-up for Cleverbot."); } } }