From 297c88468cc62abc1bbfc20674dfa01396bb0b13 Mon Sep 17 00:00:00 2001 From: Andrew <47818697+Nyeriah@users.noreply.github.com> Date: Mon, 29 Sep 2025 19:24:19 -0300 Subject: [PATCH] =?UTF-8?q?fix(Scripts/Gundrak):=20Fix=20Sladran=20Venom?= =?UTF-8?q?=20Bolt=20target=20and=20Poison=20Nova=20f=E2=80=A6=20(#23055)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../scripts/Northrend/Gundrak/boss_slad_ran.cpp | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/src/server/scripts/Northrend/Gundrak/boss_slad_ran.cpp b/src/server/scripts/Northrend/Gundrak/boss_slad_ran.cpp index 68a22e964..5bf51b7c9 100644 --- a/src/server/scripts/Northrend/Gundrak/boss_slad_ran.cpp +++ b/src/server/scripts/Northrend/Gundrak/boss_slad_ran.cpp @@ -51,14 +51,7 @@ enum Misc MAX_CONSTRICTOR = 3, MAX_SUMMONS = 5, - EVENT_POISON_NOVA = 1, - EVENT_POWERFULL_BITE = 2, - EVENT_VENOM_BOLT = 3, - EVENT_CHECK_HEALTH1 = 4, - EVENT_CHECK_HEALTH2 = 5, - EVENT_SUMMON1 = 6, - EVENT_SUMMON2 = 7, - EVENT_KILL_TALK = 8 + EVENT_KILL_TALK = 1 }; const Position SpawnLoc[] = @@ -121,17 +114,17 @@ public: Talk(SAY_AGGRO); BossAI::JustEngagedWith(who); - ScheduleTimedEvent(10s, [&]{ + ScheduleTimedEvent(16s, 53s, [&]{ Talk(EMOTE_NOVA); DoCastAOE(SPELL_POISON_NOVA); - }, 15s); + }, 16s, 53s); ScheduleTimedEvent(3s, [&] { DoCastVictim(SPELL_POWERFULL_BITE); }, 10s); ScheduleTimedEvent(15s, [&] { - DoCastVictim(SPELL_VENOM_BOLT); + DoCastRandomTarget(SPELL_VENOM_BOLT, 0, 45.0f, false); }, 10s); }