3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-11-03 14:50:30 +01:00

Read full dig packet

Dieser Commit ist enthalten in:
Myles 2016-03-07 23:52:12 +00:00
Ursprung 6a449f8db1
Commit 9144980474

Datei anzeigen

@ -98,7 +98,11 @@ public class IncomingTransformer {
}
output.writeByte(status);
// write remaining bytes
output.writeBytes(input);
Long position = input.readLong();
output.writeLong(position);
int face = input.readUnsignedByte();
output.writeByte(face);
return;
}
if (packet == PacketType.PLAY_HELD_ITEM_CHANGE_REQUEST) {