pet debugging

lakebane-master
FatBoy-DOTC 2024-02-29 19:52:08 -06:00
parent 2b63ed08b8
commit d065e9ffc8
2 changed files with 7 additions and 1 deletions

View File

@ -248,6 +248,9 @@ public enum PowersManager {
return true;
// return false;
}
ChatManager.chatSystemInfo(playerCharacter,pb.name);
ChatManager.chatSystemInfo(playerCharacter,pb.powerCategory.name());
if (playerCharacter.getLastPower() != null)
return true;
//Check if Power Target is allowed to cast.

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) {