Replace more "message.reply" with "sendMessage"

This commit is contained in:
dragonfire535
2017-03-07 11:08:53 -05:00
parent 74c9f01873
commit e3b09671cb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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!");
});
}
}
+1 -1
View File
@@ -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.");
}
}
}