Split Checks in Many Commands

This commit is contained in:
dragonfire535
2017-03-03 18:26:03 -05:00
parent f12399c774
commit cdbe6f0cd8
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ class ZalgoCommand extends commando.Command {
}
console.log("[Command] " + message.content);
let zalgoified = zalgo(message.content.split(" ").slice(1).join(" "));
message.channel.sendMessage(zalgoified, {split:{maxLength: 1900}});
message.channel.sendMessage(zalgoified, {split:{maxLength:1900}});
}
}