change order of stance and y on server -> client
All checks were successful
Node.js Build / build (20.x) (push) Successful in 5m7s
All checks were successful
Node.js Build / build (20.x) (push) Successful in 5m7s
This commit is contained in:
parent
0aa60c82ff
commit
0eb359d9ec
1 changed files with 1 additions and 1 deletions
|
@ -45,6 +45,6 @@ export default class PacketPlayerPositionLook implements IPacket {
|
|||
}
|
||||
|
||||
public writeData() {
|
||||
return createWriter(Endian.BE, 42).writeUByte(this.packetId).writeDouble(this.x).writeDouble(this.y).writeDouble(this.stance).writeDouble(this.z).writeFloat(this.yaw).writeFloat(this.pitch).writeBool(this.onGround).toBuffer();
|
||||
return createWriter(Endian.BE, 42).writeUByte(this.packetId).writeDouble(this.x).writeDouble(this.stance).writeDouble(this.y).writeDouble(this.z).writeFloat(this.yaw).writeFloat(this.pitch).writeBool(this.onGround).toBuffer();
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue