From feea00c091b923c954775fb166a173d9e0c927ff Mon Sep 17 00:00:00 2001 From: Aneesh Dogra Date: Mon, 16 Dec 2024 05:14:30 +0100 Subject: [PATCH] PullTarget - If mob on the side starts hitting, stop pull --- Core/Goals/PullTargetGoal.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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(); }