Fixes in message splitting (again)

This commit is contained in:
dragonfire535
2017-03-03 20:07:53 -05:00
parent a419e30fb5
commit 77dcad6752
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ class PirateCommand extends commando.Command {
if(messagecontent === "") {
message.channel.sendMessage(":x: Error! Nothing to translate!");
} else {
message.channel.sendMessage(pirate, {split:{maxLength:1900}});
message.channel.sendMessage(pirate, {split:true});
}
}
}