From 24f538a6365a4a191d97800a34f6fa2b9f47c0c2 Mon Sep 17 00:00:00 2001 From: UltraNix <80540499+UltraNix@users.noreply.github.com> Date: Sun, 21 Aug 2022 16:00:10 +0200 Subject: [PATCH] =?UTF-8?q?fix(Scripts/TempleofAhnQiraj):=20Skeram's=20Arc?= =?UTF-8?q?ane=20Explosion=20and=20Tru=20Fu=E2=80=A6=20(#12736)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix(Scripts/Temple of AhnQiraj): Skeram's Arcane Explosion and Tru Fullfilment should have cast times. Fixes #12715 --- src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_skeram.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_skeram.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_skeram.cpp index 4a9fc1ac3..36c4e56a8 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_skeram.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_skeram.cpp @@ -142,13 +142,13 @@ struct boss_skeram : public BossAI switch (eventId) { case EVENT_ARCANE_EXPLOSION: - DoCastAOE(SPELL_ARCANE_EXPLOSION, true); + DoCastAOE(SPELL_ARCANE_EXPLOSION, false); events.ScheduleEvent(EVENT_ARCANE_EXPLOSION, 8s, 18s); break; case EVENT_FULLFILMENT: /// @todo For some weird reason boss does not cast this // Spell actually works, tested in duel - DoCast(SelectTarget(SelectTargetMethod::Random, 0, 0.0f, true), SPELL_TRUE_FULFILLMENT, true); + DoCast(SelectTarget(SelectTargetMethod::Random, 0, 0.0f, true), SPELL_TRUE_FULFILLMENT, false); events.ScheduleEvent(EVENT_FULLFILMENT, 20s, 30s); break; case EVENT_BLINK: