From a7761597ba88e689d71a074fc15d278c67e6f248 Mon Sep 17 00:00:00 2001 From: Gultask <100873791+Gultask@users.noreply.github.com> Date: Fri, 22 Mar 2024 17:42:42 -0300 Subject: [PATCH] fix(Scripts/HyjalSummit): Frost Wyrms casting wrong spell (#18603) lmaaaooo Co-authored-by: Dan <83884799+elthehablo@users.noreply.github.com> --- .../Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal.cpp index 7a1e11cbb..d46a0fb33 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal.cpp @@ -614,7 +614,7 @@ struct npc_hyjal_frost_wyrm : public ScriptedAI { scheduler.Schedule(0s, [this](TaskContext context) { - DoCastVictim(SPELL_GARGOYLE_STRIKE); + DoCastVictim(SPELL_FROST_BREATH); context.Repeat(3500ms, 4s); }); }