Replace all sendMessage calls with send

This commit is contained in:
dragonfire535
2017-03-15 20:59:46 -04:00
parent 7faa8c3190
commit dfc9583d99
87 changed files with 174 additions and 174 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ class SpamCommand extends commando.Command {
if(!message.channel.permissionsFor(this.client.user).hasPermission('ATTACH_FILES')) return;
}
console.log("[Command] " + message.content);
message.channel.sendMessage("Spam!");
message.channel.send("Spam!");
message.channel.sendFile("./images/Spam.jpg");
}
}