mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2025-02-22 14:41:57 +01: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
This commit is contained in:
parent
3e30d989a0
commit
573dcc10b1
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user