Skip to content

Commit 02e2031

Browse files
zhangjunmingzhangjunming
authored andcommitted
fix(Scripts/IcecrownCitadel): fix Valithria Dreamwalker portals missing in Heroic and 25-man modes
This fixes a regression introduced by PR 23477 where the heroic spell ID for Nightmare Portals was lost, and the non-triggered CastSpell calls caused subsequent portals in the loop to fail due to new strict spell casting validations.
1 parent d24f9b0 commit 02e2031

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/server/scripts/Northrend/IcecrownCitadel/boss_valithria_dreamwalker.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ class boss_valithria_dreamwalker : public CreatureScript
447447
if (!IsHeroic())
448448
Talk(SAY_VALITHRIA_DREAM_PORTAL);
449449
for (uint32 i = 0; i < _portalCount; ++i)
450-
me->CastSpell(me, SPELL_PRE_SUMMON_DREAM_PORTAL, false);
450+
me->CastSpell(me, SPELL_PRE_SUMMON_DREAM_PORTAL, true);
451451
_events.ScheduleEvent(EVENT_DREAM_PORTAL, 45s, 48s);
452452
break;
453453
case EVENT_DREAM_SLIP:

0 commit comments

Comments
 (0)