3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-07-06 07:18:03 +02:00

Fix player entity meta data

I'm not 100% confident that what I'm doing here is correct, but looking at http://wiki.vg/Pre-release_protocol#Spawn_Player I think I'm doing it right.

fixes #58
Dieser Commit ist enthalten in:
gigosaurus 2016-03-03 00:06:13 +00:00
Ursprung 3e30d989a0
Commit 573dcc10b1

Datei anzeigen

@ -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;