diff --git a/Source/Game/AI/CoreAI/PetAI.cs b/Source/Game/AI/CoreAI/PetAI.cs index 71e384215..8b72950b9 100644 --- a/Source/Game/AI/CoreAI/PetAI.cs +++ b/Source/Game/AI/CoreAI/PetAI.cs @@ -633,6 +633,16 @@ namespace Game.AI AttackStart(attacker); } + public override void JustEnteredCombat(Unit who) + { + EngagementStart(who); + } + + public override void JustExitedCombat() + { + EngagementOver(); + } + // The following aren't used by the PetAI but need to be defined to override // default CreatureAI functions which interfere with the PetAI public override void MoveInLineOfSight(Unit who) { }