diff options
author | megamage <none@none> | 2009-05-22 16:42:29 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-05-22 16:42:29 -0500 |
commit | 7f2fb69726fda3bce65a206f11977f9aabd05238 (patch) | |
tree | 547b40527f0990276c1326469fdf1ff4ccb1a128 /src | |
parent | c31fc2780bfef4349d239f6f19d0904b24a347ee (diff) |
*Fix Cleansing Totem Author: Astellar
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellEffects.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 5ce8ec41f32..eb50a98f036 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -1840,6 +1840,12 @@ void Spell::EffectDummy(uint32 i) } return; } + // Cleansing Totem + if(m_spellInfo->SpellFamilyFlags[0] & 0x04000000 && m_spellInfo->SpellIconID==1673) + { + m_caster->CastSpell(unitTarget, 52025, true, 0, 0, m_originalCasterGUID); + return; + } // Healing Stream Totem if(m_spellInfo->SpellFamilyFlags[0] & 0x2000) { |