Skip to content

Commit 54747cf

Browse files
committed
[Savestates] Fix low/high gravity when savestating while strafing left/right
Another bug found by ACatThatCanParkourReallyWell9900, thanks!
1 parent b751a53 commit 54747cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/minecrafttas/tasmod/savestates/SavestateHandlerClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,8 +294,8 @@ public static void loadPlayer(NBTTagCompound compound) {
294294
double z = player.motionZ;
295295

296296
float rx = player.moveForward;
297-
float ry = player.moveStrafing;
298-
float rz = player.moveVertical;
297+
float ry = player.moveVertical;
298+
float rz = player.moveStrafing;
299299

300300
boolean sprinting = player.isSprinting();
301301
float jumpVector = player.jumpMovementFactor;

0 commit comments

Comments
 (0)