From 00ee7bd920aec8beef4a04a10405641b20f40c1e Mon Sep 17 00:00:00 2001 From: Andrew <47818697+Nyeriah@users.noreply.github.com> Date: Tue, 12 Dec 2023 04:46:19 -0300 Subject: [PATCH] =?UTF-8?q?fix(Scripts/SerpentshrineCavern):=20fix=20Hydro?= =?UTF-8?q?ss=20not=20casting=20Water=20Tomb=20=E2=80=A6=20(#18003)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix(Scripts/SerpentshrineCavern): fix Hydross not casting Water Tomb & Vile Sludge --- .../SerpentShrine/boss_hydross_the_unstable.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_hydross_the_unstable.cpp b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_hydross_the_unstable.cpp index 2f78f2344..c2bbfeaec 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_hydross_the_unstable.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_hydross_the_unstable.cpp @@ -165,7 +165,7 @@ struct boss_hydross_the_unstable : public BossAI DoCastSelf(SPELL_MARK_OF_CORRUPTION6); }).Schedule(12150ms, GROUP_ABILITIES, [this](TaskContext context) { - DoCastRandomTarget(SPELL_VILE_SLUDGE, true); + DoCastRandomTarget(SPELL_VILE_SLUDGE, 0, 0.0f, true, true); context.Repeat(9700ms, 32800ms); }); } @@ -196,7 +196,7 @@ struct boss_hydross_the_unstable : public BossAI DoCastSelf(SPELL_MARK_OF_HYDROSS6); }).Schedule(12150ms, GROUP_ABILITIES, [this](TaskContext context) { - DoCastRandomTarget(SPELL_WATER_TOMB, true); + DoCastRandomTarget(SPELL_WATER_TOMB, 0, 0.0f, true, true); context.Repeat(9700ms, 32800ms); }); }