diff options
author | megamage <none@none> | 2009-04-19 01:06:06 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-04-19 01:06:06 -0500 |
commit | a60d1867e15c44518a84a73ecc344eea7b048af1 (patch) | |
tree | 71df68d8612801b69e16f84dfc28b07ddfebdbe0 /src/game/SpellAuras.cpp | |
parent | 7f8cf6c5fe709d73e89d3ae5a1c85fec2f4618d1 (diff) |
*Fix spell Negative Energy (casted by Entropius).
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellAuras.cpp')
-rw-r--r-- | src/game/SpellAuras.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 1a837de8775..5b75da79a21 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -1820,6 +1820,12 @@ void Aura::TriggerSpell() caster->CastCustomSpell(target, trigger_spell_id, &m_modifier.m_amount, NULL, NULL, true, NULL, this, originalCasterGUID); return; } + // Negative Energy Periodic + case 46284: + { + caster->CastCustomSpell(trigger_spell_id, SPELLVALUE_MAX_TARGETS, m_tickNumber / 10 + 1, NULL, true, NULL, this, originalCasterGUID); + return; + } } } if(!GetSpellMaxRange(sSpellRangeStore.LookupEntry(triggeredSpellInfo->rangeIndex))) |