diff options
author | maximius <none@none> | 2009-11-17 20:09:01 -0800 |
---|---|---|
committer | maximius <none@none> | 2009-11-17 20:09:01 -0800 |
commit | 963a6c14f15e9219f9afb5fc1b2a1170c9b8292c (patch) | |
tree | bd764e367fe9a5eb4b928c4bf90602463c72a27e | |
parent | 1bc7abb278166acae1b12a2acb70588d43daaac7 (diff) |
*Cleansing Totem Pulse at cast, thanks lobuz
--HG--
branch : trunk
-rw-r--r-- | src/game/SpellMgr.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index 8260bc7293a..357ea3bc3e3 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -3794,6 +3794,10 @@ void SpellMgr::LoadSpellCustomAttr() case 62324: // Throw Passenger spellInfo->Targets |= TARGET_FLAG_CASTER; break; + // cleansing totem pulse when it is spawned + case 8172: + spellInfo->AttributesEx5 |= SPELL_ATTR_EX5_START_PERIODIC_AT_APPLY; + break; default: break; } |