diff options
author | Killyana <morphone1@gmail.com> | 2019-12-19 21:46:16 +0100 |
---|---|---|
committer | Killyana <morphone1@gmail.com> | 2019-12-19 21:46:16 +0100 |
commit | 462b63957aa821b388a88a741c9eb9bb59491b4a (patch) | |
tree | 8aef9a36cecaec7f33da5b02176d4ad9962ca632 /src | |
parent | 23f904afb498704f75bc124effaf72a945e773ce (diff) |
Spell: Move Shadow Trap aura to the cpp
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp index fb235733500..c3fa619d246 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp @@ -93,6 +93,7 @@ enum Spells SPELL_SHADOW_TRAP = 73539, SPELL_SHADOW_TRAP_AURA = 73525, SPELL_SHADOW_TRAP_KNOCKBACK = 73529, + SPELL_SHADOW_TRAP_VISUAL = 73530, // Phase Transition SPELL_REMORSELESS_WINTER_1 = 68981, @@ -742,6 +743,9 @@ class boss_the_lich_king : public CreatureScript summon->HandleEmoteCommand(EMOTE_ONESHOT_EMERGE); summon->m_Events.AddEvent(new LichKingStartMovementEvent(me, summon), summon->m_Events.CalculateTime(5000)); break; + case NPC_SHADOW_TRAP: + summon->CastSpell(summon, SPELL_SHADOW_TRAP_VISUAL, true); + break; case NPC_ICE_SPHERE: { if (Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 0, 0.0f, true)) |