Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-12-26 16:12:42 +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
Dieser Commit ist enthalten in:
Ursprung
3e30d989a0
Commit
573dcc10b1
@ -393,6 +393,9 @@ public class OutgoingTransformer {
|
|||||||
byte yaw = input.readByte();
|
byte yaw = input.readByte();
|
||||||
output.writeByte(yaw);
|
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);
|
transformMetadata(id, input, output);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren