diff --git a/Core/Goals/PullTargetGoal.cs b/Core/Goals/PullTargetGoal.cs index 28c2b9d0..5a748a25 100644 --- a/Core/Goals/PullTargetGoal.cs +++ b/Core/Goals/PullTargetGoal.cs @@ -200,9 +200,6 @@ public override void Update() } } - if (castAny || spellInQueue || playerReader.IsCasting()) - return; - if (combatUtil.EnteredCombat()) { if (wait.Until(AcquireTargetTimeMs, CombatLogChanged) >= 0) @@ -228,6 +225,9 @@ public override void Update() return; } + if (castAny || spellInQueue || playerReader.IsCasting()) + return; + approachAction(); }