diff options
author | n0n4m3 <none@none> | 2009-12-24 13:01:39 +0100 |
---|---|---|
committer | n0n4m3 <none@none> | 2009-12-24 13:01:39 +0100 |
commit | 7b19bea10faa1722fb856eff05adb1363110a28d (patch) | |
tree | 759773efe8fba1ba24ed2577f03650b663c08204 /src/game/Unit.cpp | |
parent | 3ab368caa7680b022972e01fdc8968b284cb7788 (diff) |
Fixed spell Spirit Walk. by Ouden
--HG--
branch : trunk
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 230478dd9ec..f8d71b8db66 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -5153,6 +5153,17 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger triggered_spell_id = 34650; break; } + // Spirit Walk + case 58875: + { + // Cast on owner + target = GetOwner(); + if(!target) + return false; + + triggered_spell_id = 58876; + break; + } // Mark of Malice case 33493: { |