forked from MagicBane/Server
pet debugging
parent
2b63ed08b8
commit
d065e9ffc8
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue