diff --git a/commands/textedit/romaji.js b/commands/textedit/romaji.js index 549d79c3..9a42c529 100644 --- a/commands/textedit/romaji.js +++ b/commands/textedit/romaji.js @@ -21,7 +21,7 @@ class RomajiCommand extends commando.Command { let romajify = message.content.split(" ").slice(1).join(" "); if(hepburn.containsKana(romajify)) { let romajified = hepburn.fromKana(romajify); - message.channel.sendMessage(romajified, {split:{maxLength:1900}}); + message.channel.sendMessage(romajified, {split:true}); } else { message.channel.sendMessage(":x: Error! Message contains no Kana!\n:notepad_spiral: Note: You cannot use this command on Kanji!"); }