From ede3992cd35804c7c7c7916814b11b9d4e57c71e Mon Sep 17 00:00:00 2001 From: v-mstrs <104088833+v-mstrs@users.noreply.github.com> Date: Mon, 20 Oct 2025 23:45:30 +0200 Subject: [PATCH 1/2] Olm now moves freely Olm now moves freely --- .../Outland/GruulsLair/boss_high_king_maulgar.cpp | 9 --------- 1 file changed, 9 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 c7397da3e2..a05e3adcd5 100644 --- a/src/server/scripts/Outland/GruulsLair/boss_high_king_maulgar.cpp +++ b/src/server/scripts/Outland/GruulsLair/boss_high_king_maulgar.cpp @@ -188,15 +188,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(); From 2bd2a828242a6f327bdd00b3ee33b3725d0f92d7 Mon Sep 17 00:00:00 2001 From: v-mstrs <104088833+v-mstrs@users.noreply.github.com> Date: Wed, 22 Oct 2025 12:06:32 +0200 Subject: [PATCH 2/2] Change kiggler chase range to 40y His lightning bolt has a maximum range of 40 https://www.wowhead.com/wotlk/spell=36152/lightning-bolt https://wowpedia.fandom.com/wiki/Kiggler_the_Crazed --- .../scripts/Outland/GruulsLair/boss_high_king_maulgar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 a05e3adcd5..1e65399e75 100644 --- a/src/server/scripts/Outland/GruulsLair/boss_high_king_maulgar.cpp +++ b/src/server/scripts/Outland/GruulsLair/boss_high_king_maulgar.cpp @@ -259,7 +259,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