diff options
author | click <none@none> | 2010-11-13 04:10:48 +0100 |
---|---|---|
committer | click <none@none> | 2010-11-13 04:10:48 +0100 |
commit | 5d42e2293c080d4190780511680dae2ca6504d02 (patch) | |
tree | 1323efe7aa27fb5b195e69473bc1c2142c66a047 /src/server/game/Spells/SpellMgr.cpp | |
parent | e22426c7c0c0aa4088d079a821fc13233ba78887 (diff) |
Core/Spells: Fix Culling the Herd (and a personal thanks to Xanadu for being patient on explaining the procsystem properly)
Closes issue 4533
--HG--
branch : trunk
Diffstat (limited to 'src/server/game/Spells/SpellMgr.cpp')
-rwxr-xr-x | src/server/game/Spells/SpellMgr.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 0c06a8cb5da..484ee03f091 100755 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3896,6 +3896,11 @@ void SpellMgr::LoadSpellCustomAttr() spellInfo->EffectImplicitTargetB[0] = TARGET_UNIT_PET; count++; break; + case 70893: // Culling The Herd + spellInfo->EffectImplicitTargetA[0] = TARGET_UNIT_CASTER; + spellInfo->EffectImplicitTargetB[0] = TARGET_UNIT_MASTER; + count++; + break; case 71413: // Green Ooze Summon case 71414: // Orange Ooze Summon spellInfo->EffectImplicitTargetA[0] = TARGET_DEST_DEST; |