player update sync
This commit is contained in:
@@ -4845,8 +4845,8 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
@Override
|
@Override
|
||||||
public void update(Boolean newSystem) {
|
public void update(Boolean newSystem) {
|
||||||
|
|
||||||
if(!newSystem)
|
//if(!newSystem)
|
||||||
return;
|
// return;
|
||||||
|
|
||||||
if (this.updateLock.writeLock().tryLock()) {
|
if (this.updateLock.writeLock().tryLock()) {
|
||||||
try {
|
try {
|
||||||
@@ -4858,19 +4858,19 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
forceRespawn(this);
|
forceRespawn(this);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
updateLocation();
|
this.updateLocation();
|
||||||
updateMovementState();
|
this.updateMovementState();
|
||||||
updateRegen();
|
this.updateRegen();
|
||||||
|
|
||||||
if (this.getStamina() < 10) {
|
if (this.getStamina() < 10) {
|
||||||
if (this.getAltitude() > 0 || this.getDesiredAltitude() > 0) {
|
if (this.getAltitude() > 0 || this.getDesiredAltitude() > 0) {
|
||||||
PlayerCharacter.GroundPlayer(this);
|
PlayerCharacter.GroundPlayer(this);
|
||||||
updateRegen();
|
this.updateRegen();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
RealmMap.updateRealm(this);
|
RealmMap.updateRealm(this);
|
||||||
updateBlessingMessage();
|
this.updateBlessingMessage();
|
||||||
|
|
||||||
this.safeZone = this.isInSafeZone();
|
this.safeZone = this.isInSafeZone();
|
||||||
if(!this.timestamps.containsKey("nextBoxCheck"))
|
if(!this.timestamps.containsKey("nextBoxCheck"))
|
||||||
|
|||||||
@@ -517,8 +517,8 @@ public class WorldServer {
|
|||||||
Logger.info("Starting Bane Thread");
|
Logger.info("Starting Bane Thread");
|
||||||
BaneThread.startBaneThread();
|
BaneThread.startBaneThread();
|
||||||
|
|
||||||
Logger.info("Starting Player Update Thread");
|
//Logger.info("Starting Player Update Thread");
|
||||||
UpdateThread.startUpdateThread();
|
//UpdateThread.startUpdateThread();
|
||||||
|
|
||||||
|
|
||||||
printThreads();
|
printThreads();
|
||||||
|
|||||||
Reference in New Issue
Block a user