Merge pull request #18 from StamBoom/master

Fix MalformedJsonException when opening renamed containers
This commit is contained in:
Myles 2016-03-01 17:08:47 +00:00
commit e43968c142
1 changed files with 14 additions and 0 deletions

View File

@ -263,6 +263,20 @@ public class OutgoingTransformer {
return;
}
if (packet == PacketType.PLAY_OPEN_WINDOW){
int windowId = input.readUnsignedByte();
String type = readString(input);
String windowTitle = readString(input);
if (windowTitle.startsWith("\""))
windowTitle = "{\"text\":" + windowTitle + "}";;
output.writeByte(windowId);
writeString(type,output);
writeString(windowTitle,output);
output.writeBytes(input);
return;
}
if (packet == PacketType.PLAY_SPAWN_MOB) {
int id = PacketUtil.readVarInt(input);
PacketUtil.writeVarInt(id, output);