Merge pull request #63 from gigosaurus/patch-1

Fix player entity meta data
This commit is contained in:
Myles 2016-03-03 00:12:03 +00:00
commit 99fd01c359

View File

@ -393,6 +393,9 @@ public class OutgoingTransformer {
byte yaw = input.readByte();
output.writeByte(yaw);
// next field is Current Item, this was removed in 1.9 so we'll ignore it
input.readShort();
transformMetadata(id, input, output);
return;