From f12399c774b616cc890efddf78db6d2be4fc31af Mon Sep 17 00:00:00 2001 From: dragonfire535 Date: Fri, 3 Mar 2017 18:21:51 -0500 Subject: [PATCH] Add Split to Zalgo --- commands/textedit/zalgo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/textedit/zalgo.js b/commands/textedit/zalgo.js index 50cd98e9..fbafdad4 100644 --- a/commands/textedit/zalgo.js +++ b/commands/textedit/zalgo.js @@ -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); + message.channel.sendMessage(zalgoified, {split:{maxLength: 1900}}); } }