diff options
| author | Shauren <shauren.trinity@gmail.com> | 2011-10-07 18:51:11 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2011-10-07 18:51:11 +0200 |
| commit | 88277ac10ce41eb91e0065306b4df5a2b9e2a433 (patch) | |
| tree | 2828a7c8a0297c90146d45c1e0277629e25f4470 | |
| parent | 0acd9a95033d3f433691d0ec21533dde07b1ab6f (diff) | |
Scripts/Icecrown Citadel: Fixed possible crash in spell_the_lich_king_necrotic_plague_jump
Closes #3390
| -rw-r--r-- | src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp | 2 |
1 files changed, 1 insertions, 1 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 85ab188f336..44d608be46e 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp @@ -2151,7 +2151,7 @@ class spell_the_lich_king_necrotic_plague_jump : public SpellScriptLoader void AddMissingStack() { - if (!_hadAura && GetSpellValue()->EffectBasePoints[EFFECT_1] != AURA_REMOVE_BY_ENEMY_SPELL) + if (GetHitAura() && !_hadAura && GetSpellValue()->EffectBasePoints[EFFECT_1] != AURA_REMOVE_BY_ENEMY_SPELL) GetHitAura()->ModStackAmount(1); } |
