Minecraft 1.11: Raise chat message max length to 256

This commit is contained in:
ORelio 2016-11-19 16:06:08 +01:00
parent 8ec2b2e570
commit 609b939159
4 changed files with 30 additions and 6 deletions

View file

@ -586,6 +586,11 @@ namespace MinecraftClient.Protocol.Handlers
catch (System.IO.IOException) { }
}
public int GetMaxChatMessageLength()
{
return 100;
}
public bool SendChatMessage(string message)
{
if (String.IsNullOrEmpty(message))