From 3e82e8a0dfe0e1d6924c443a673885ba1ea9ef41 Mon Sep 17 00:00:00 2001 From: Skjalf <47818697+Nyeriah@users.noreply.github.com> Date: Mon, 8 Nov 2021 22:53:59 -0300 Subject: [PATCH] fix(Scripts/UBRS): Rend's summon spell should be a triggered cast (#9074) Fixes him not being summoned if Gyth's casting something when the transition hits. --- .../BlackrockMountain/BlackrockSpire/boss_gyth.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gyth.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gyth.cpp index 24e0461a4..331c90b3f 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gyth.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gyth.cpp @@ -105,7 +105,7 @@ public: // Let creature fall to 1 HP but prevent it from dying before boss is summoned. damage = me->GetHealth() - 1; } - DoCast(me, SPELL_SUMMON_REND); + DoCast(me, SPELL_SUMMON_REND, true); me->RemoveAura(SPELL_REND_MOUNTS); _summonedRend = true; }