mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-22 18:15:39 +01:00
Read full dig packet
This commit is contained in:
parent
6a449f8db1
commit
9144980474
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user