region heights issue

This commit is contained in:
2025-02-22 22:38:40 -06:00
parent e90465ee8f
commit 5fabd31495
4 changed files with 30 additions and 7 deletions
+4 -3
View File
@@ -620,9 +620,6 @@ public class MobAI {
if (mob == null)
return;
if(mob.isAlive())
if(!mob.getMovementLoc().equals(Vector3fImmutable.ZERO))
mob.setLoc(mob.getMovementLoc());
if (mob.getTimestamps().containsKey("lastExecution") == false)
mob.getTimestamps().put("lastExecution", System.currentTimeMillis());
@@ -678,6 +675,10 @@ public class MobAI {
return;
}
if(mob.isAlive())
if(!mob.getMovementLoc().equals(Vector3fImmutable.ZERO))
mob.setLoc(mob.getMovementLoc());
if(mob.isPet() == false && mob.isPlayerGuard == false)
CheckToSendMobHome(mob);