pet debugging

This commit is contained in:
2024-02-29 19:30:47 -06:00
parent 8f6e13102d
commit bb91502cb4
2 changed files with 11 additions and 3 deletions
+7 -2
View File
@@ -42,6 +42,8 @@ import static engine.net.client.msg.ErrorPopupMsg.sendErrorPopup;
public class Mob extends AbstractIntelligenceAgent {
private static int staticID = 0;
public static HashMap<Integer,Mob> dynamic_pets = new HashMap<>();
//mob specific
public final ConcurrentHashMap<Integer, Float> playerAgroMap = new ConcurrentHashMap<>(); //key = Player value = hate value
@@ -561,7 +563,8 @@ public class Mob extends AbstractIntelligenceAgent {
petMinion.despawned = false;
petMinion.runAfterLoad();
DbManager.addToCache(petMinion);
//DbManager.addToCache(petMinion);
Mob.dynamic_pets.put(petMinion.getObjectUUID(),petMinion);
petMinion.setLoc(petMinion.bindLoc);
return petMinion;
@@ -933,7 +936,9 @@ public class Mob extends AbstractIntelligenceAgent {
this.playerAgroMap.clear();
WorldGrid.RemoveWorldObject(this);
DbManager.removeFromCache(this);
//DbManager.removeFromCache(this);
if(Mob.dynamic_pets.containsKey(this.getObjectUUID()))
Mob.dynamic_pets.remove(this.getObjectUUID());
PlayerCharacter petOwner = (PlayerCharacter) this.guardCaptain;
if (petOwner != null) {