From e693b208bed69267f859b6947b416419b0c64b76 Mon Sep 17 00:00:00 2001 From: SaW Date: Sat, 18 Oct 2025 22:54:52 +0200 Subject: [PATCH] FIX: ICC - default return position for BQL (#1737) --- src/strategy/raids/icecrown/RaidIccMultipliers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strategy/raids/icecrown/RaidIccMultipliers.cpp b/src/strategy/raids/icecrown/RaidIccMultipliers.cpp index 99c6b4e5..8c711103 100644 --- a/src/strategy/raids/icecrown/RaidIccMultipliers.cpp +++ b/src/strategy/raids/icecrown/RaidIccMultipliers.cpp @@ -472,7 +472,6 @@ float IccBqlMultiplier::GetValue(Action* action) else return 0.0f; // Cancel all other actions when we need to handle Swarming Shadows } - return 1.0f; if ((boss->GetExactDist2d(ICC_BQL_TANK_POSITION.GetPositionX(), ICC_BQL_TANK_POSITION.GetPositionY()) > 10.0f) && botAI->IsRanged(bot) && !((boss->GetPositionZ() - bot->GetPositionZ()) > 5.0f)) @@ -481,6 +480,7 @@ float IccBqlMultiplier::GetValue(Action* action) return 0.0f; } + return 1.0f; } //VDW