We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f02e3f1 commit 23851fcCopy full SHA for 23851fc
KBEngine.cs
@@ -1817,9 +1817,9 @@ public void updatePlayerToServer()
1817
bundle.writeFloat(position.y);
1818
bundle.writeFloat(position.z);
1819
1820
- bundle.writeFloat((float)((double)direction.z / 360 * 6.283185307179586));
1821
- bundle.writeFloat((float)((double)direction.y / 360 * 6.283185307179586));
1822
bundle.writeFloat((float)((double)direction.x / 360 * 6.283185307179586));
+ bundle.writeFloat((float)((double)direction.y / 360 * 6.283185307179586));
+ bundle.writeFloat((float)((double)direction.z / 360 * 6.283185307179586));
1823
bundle.writeUint8((Byte)(playerEntity.isOnGound == true ? 1 : 0));
1824
bundle.writeUint32(spaceID);
1825
bundle.send(_networkInterface);
0 commit comments