Browse Source

Auditmobs hashset for to deleted as it was being populated once a second but never used.

pull/16/head
MagicBot 2 years ago
parent
commit
59cebf9e9b
  1. 7
      src/engine/ai/MobileFSMManager.java

7
src/engine/ai/MobileFSMManager.java

@ -76,16 +76,11 @@ public class MobileFSMManager { @@ -76,16 +76,11 @@ public class MobileFSMManager {
ThreadUtils.sleep(1);
if (System.currentTimeMillis() > mobPulse) {
HashSet<Integer> auditMobs = new HashSet<Integer>();
for (Zone zone : ZoneManager.getAllZones()) {
for (Mob mob : zone.zoneMobSet) {
if (auditMobs.contains(mob.getObjectUUID()))
continue;
auditMobs.add(mob.getObjectUUID());
try {
if (mob != null)
MobileFSM.run(mob);

Loading…
Cancel
Save