From c5b96f65bac40afbc92c08972012c12ace7cb69c Mon Sep 17 00:00:00 2001 From: v-mstrs <104088833+v-mstrs@users.noreply.github.com> Date: Sat, 13 Jun 2026 12:47:23 +0200 Subject: [PATCH] fix(Scripts/GruulsLair): Olm moves freely and Kiggler's chase range is 40y (#23334) Co-authored-by: sudlud --- .../Outland/GruulsLair/boss_high_king_maulgar.cpp | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/server/scripts/Outland/GruulsLair/boss_high_king_maulgar.cpp b/src/server/scripts/Outland/GruulsLair/boss_high_king_maulgar.cpp index 4a81ca2c10..ac24a919d1 100644 --- a/src/server/scripts/Outland/GruulsLair/boss_high_king_maulgar.cpp +++ b/src/server/scripts/Outland/GruulsLair/boss_high_king_maulgar.cpp @@ -183,15 +183,6 @@ struct boss_olm_the_summoner : public ScriptedAI instance->SetBossState(DATA_MAULGAR, NOT_STARTED); } - void AttackStart(Unit* who) override - { - if (!who) - return; - - if (me->Attack(who, true)) - me->GetMotionMaster()->MoveChase(who, 25.0f); - } - void JustEngagedWith(Unit* /*who*/) override { me->SetInCombatWithZone(); @@ -263,7 +254,7 @@ struct boss_kiggler_the_crazed : public ScriptedAI return; if (me->Attack(who, true)) - me->GetMotionMaster()->MoveChase(who, 25.0f); + me->GetMotionMaster()->MoveChase(who, 40.0f); } void JustEngagedWith(Unit* /*who*/) override