diff --git a/Source/Game/Entities/Creature/Creature.cs b/Source/Game/Entities/Creature/Creature.cs index 9195d0aed..c90b8113e 100644 --- a/Source/Game/Entities/Creature/Creature.cs +++ b/Source/Game/Entities/Creature/Creature.cs @@ -2035,9 +2035,14 @@ namespace Game.Entities Unit targetVictim = target.getAttackerForHelper(); // if I'm already fighting target, or I'm hostile towards the target, the target is acceptable - if (myVictim == target || targetVictim == this || IsHostileTo(target)) + if (GetVictim() == target || IsHostileTo(target)) return true; + // a player is targeting me, but I'm not hostile towards it, and not currently attacking it, the target is not acceptable + // (players may set their victim from a distance, and doesn't mean we should attack) + if (target.GetTypeId() == TypeId.Player && targetVictim == this) + return false; + // if the target's victim is friendly, and the target is neutral, the target is acceptable if (targetVictim != null && IsFriendlyTo(targetVictim)) return true;