pet debugging

This commit is contained in:
2024-02-29 19:52:08 -06:00
parent 2b63ed08b8
commit d065e9ffc8
2 changed files with 7 additions and 1 deletions
+4 -1
View File
@@ -565,6 +565,7 @@ public class Mob extends AbstractIntelligenceAgent {
petMinion.runAfterLoad();
//DbManager.addToCache(petMinion);
Mob.dynamic_pets.put(petMinion.getObjectUUID(),petMinion);
Logger.info("Added Pet To dynamic_pets with UUID: " + petMinion.getObjectUUID());
petMinion.setLoc(petMinion.bindLoc);
return petMinion;
@@ -937,8 +938,10 @@ public class Mob extends AbstractIntelligenceAgent {
WorldGrid.RemoveWorldObject(this);
//DbManager.removeFromCache(this);
if(Mob.dynamic_pets.containsKey(this.getObjectUUID()))
if(Mob.dynamic_pets.containsKey(this.getObjectUUID())) {
Mob.dynamic_pets.remove(this.getObjectUUID());
Logger.info("Removed Pet From dynamic_pets with UUID: " + this.getObjectUUID());
}
PlayerCharacter petOwner = (PlayerCharacter) this.guardCaptain;
if (petOwner != null) {