Drop Reply in most cases

This commit is contained in:
dragonfire535
2017-03-03 12:19:13 -05:00
parent d6ad30caf9
commit bb9a8b3e0d
42 changed files with 83 additions and 83 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ class UserInfoCommand extends commando.Command {
}
console.log("[Command] " + message.content);
if (message.channel.type === 'dm') {
message.reply(":x: This is a DM!");
message.channel.sendMessage(":x: This is a DM!");
} else {
let member = message.guild.member(message.mentions.users.first());
let stat;
@@ -54,7 +54,7 @@ class UserInfoCommand extends commando.Command {
break;
}
if (message.mentions.users.size !== 1) {
message.reply(':x: Either too many or no members, only mention one person!');
message.channel.sendMessage(':x: Either too many or no members, only mention one person!');
} else {
if (message.mentions.users.first().presence.game === null) {
const embed = new Discord.RichEmbed()