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
+4 -1
View File
@@ -350,9 +350,12 @@ public enum PowersManager {
} else {
// get target
AbstractWorldObject target = getTarget(msg);
if(target == null && msg.getTargetType() == 37 && Mob.dynamic_pets.get(msg.getTargetID()) != null){
Mob pet = Mob.dynamic_pets.get(msg.getTargetID());
target = pet;
}
if (target == null) {
ChatManager.chatSystemInfo(PlayerCharacter.getPlayerCharacter(msg.getSourceID()), "Target Null");
return true;
}
if (!target.isAlive() && target.getObjectType().equals(GameObjectType.Building) == false && msg.getPowerUsedID() != 428589216)