order of update operations

This commit is contained in:
2025-03-17 08:50:20 -05:00
parent dbf681b065
commit 9fa3c9d7aa
+4 -3
View File
@@ -5144,9 +5144,6 @@ public class PlayerCharacter extends AbstractCharacter {
@Override
public void update(Boolean newSystem) {
this.updateLocation();
this.updateMovementState();
if(!newSystem)
return;
@@ -5155,6 +5152,10 @@ public class PlayerCharacter extends AbstractCharacter {
if (this.updateLock.writeLock().tryLock()) {
this.updateMovementState();
this.updateLocation();
try {
if (this.isAlive() && this.isActive && this.enteredWorld) {