From 50bd411aa35ba8c0e623ec67ff7aea28f6518937 Mon Sep 17 00:00:00 2001 From: dragonfire535 Date: Fri, 3 Mar 2017 18:33:43 -0500 Subject: [PATCH] Try to fix zalgo split --- 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 b96dd686..047f8eb8 100644 --- a/commands/textedit/zalgo.js +++ b/commands/textedit/zalgo.js @@ -22,7 +22,7 @@ class ZalgoCommand extends commando.Command { if(zalgoified === '') { message.channel.sendMessage(":x: Error! Nothing to zalgoify!"); } else { - message.channel.sendMessage(zalgoified, {split:{maxLength:1900}}); + message.channel.sendMessage(zalgoified, {split:{maxLength:1000}}); } } }