|
|
@ -5144,17 +5144,23 @@ public class PlayerCharacter extends AbstractCharacter { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void update(Boolean newSystem) { |
|
|
|
public void update(Boolean newSystem) { |
|
|
|
|
|
|
|
|
|
|
|
if(!newSystem) |
|
|
|
|
|
|
|
this.updateLocation(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.updateMovementState(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(!newSystem) |
|
|
|
if(!newSystem) |
|
|
|
return; |
|
|
|
return; |
|
|
|
|
|
|
|
|
|
|
|
try { |
|
|
|
try { |
|
|
|
|
|
|
|
|
|
|
|
if (this.updateLock.writeLock().tryLock()) { |
|
|
|
if (this.updateLock.writeLock().tryLock()) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.updateMovementState(); |
|
|
|
|
|
|
|
this.updateLocation(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(!this.timestamps.containsKey("SetDirty")){ |
|
|
|
|
|
|
|
this.timestamps.put("SetDirty", System.currentTimeMillis()); |
|
|
|
|
|
|
|
}else if (this.timestamps.get("SetDirty") + 5000L < System.currentTimeMillis()){ |
|
|
|
|
|
|
|
InterestManager.setObjectDirty(this); |
|
|
|
|
|
|
|
this.timestamps.put("SetDirty", System.currentTimeMillis()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
try { |
|
|
|
try { |
|
|
|
|
|
|
|
|
|
|
|
if (this.isAlive() && this.isActive && this.enteredWorld) { |
|
|
|
if (this.isAlive() && this.isActive && this.enteredWorld) { |
|
|
@ -5197,8 +5203,7 @@ public class PlayerCharacter extends AbstractCharacter { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (this.isBoxed){// && !this.containsEffect(1672601862)) {
|
|
|
|
if (this.isBoxed){ |
|
|
|
//PowersManager.applyPower(this, this, Vector3fImmutable.ZERO, 1672601862, 40, false);
|
|
|
|
|
|
|
|
if(!this.title.equals(CharacterTitle.PVE)){ |
|
|
|
if(!this.title.equals(CharacterTitle.PVE)){ |
|
|
|
this.title = CharacterTitle.PVE; |
|
|
|
this.title = CharacterTitle.PVE; |
|
|
|
InterestManager.setObjectDirty(this); |
|
|
|
InterestManager.setObjectDirty(this); |
|
|
|