removed debug logging

This commit is contained in:
Niko Storni 2017-12-19 01:28:21 +01:00
parent fe822fb110
commit 136e158118

View file

@ -29,8 +29,6 @@ let checkForCommand = function(message) {
message.content.toLowerCase().indexOf(command.toLowerCase()) >= 0 &&
commands[command].operation === "send"
) {
console.log("sending message");
console.log(commands[command].bundle);
message.channel.send("", new Discord.RichEmbed(commands[command].bundle));
}
});