Browse Source

mob region lookup

lakebane-strongholds
FatBoy-DOTC 4 months ago
parent
commit
c652379a5f
  1. 11
      src/engine/mobileAI/MobAI.java
  2. 2
      src/engine/objects/Mob.java

11
src/engine/mobileAI/MobAI.java

@ -871,14 +871,15 @@ public class MobAI {
} }
} }
} }
} else if (System.currentTimeMillis() > (aiAgent.deathTime + (aiAgent.spawnTime * 1000L))) { }
if(Mob.discDroppers.contains(aiAgent)) if(Mob.discDroppers.contains(aiAgent))
return; return;
if(aiAgent.StrongholdGuardian || aiAgent.StrongholdEpic || aiAgent.StrongholdCommander) if(aiAgent.StrongholdGuardian || aiAgent.StrongholdEpic || aiAgent.StrongholdCommander)
return; return;
if (System.currentTimeMillis() > (aiAgent.deathTime + (aiAgent.spawnTime * 1000L))) {
if (!Zone.respawnQue.contains(aiAgent)) { if (!Zone.respawnQue.contains(aiAgent)) {
Zone.respawnQue.add(aiAgent); Zone.respawnQue.add(aiAgent);
} }

2
src/engine/objects/Mob.java

@ -1285,7 +1285,7 @@ public class Mob extends AbstractIntelligenceAgent {
} }
setLoc(newLoc); setLoc(newLoc);
this.region = AbstractWorldObject.GetRegionByWorldObject(this); this.region = Regions.GetRegionForTeleport(this.loc);//AbstractWorldObject.GetRegionByWorldObject(this);
//Next update will be end Loc, lets stop him here. //Next update will be end Loc, lets stop him here.
} }

Loading…
Cancel
Save