diff options
author | megamage <none@none> | 2009-06-14 21:05:37 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-06-14 21:05:37 -0500 |
commit | 46ab948fe5ddb49ef3489fdb9114ea73a78f30bc (patch) | |
tree | 66ee9697feacbfd68c68ccccbc9e619c3d914337 /src | |
parent | 8d6cb15e00a342a86b9e201af10d4ff1f8d6bb06 (diff) |
*Fix spell 53110.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellEffects.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 24274cf19dd..5506ec0dab1 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -4938,6 +4938,10 @@ void Spell::EffectScriptEffect(uint32 effIndex) unitTarget->CastSpell(unitTarget, damage, false); break; } + case 53110: // Devour Humanoid + if(unitTarget) + unitTarget->CastSpell(m_caster, damage, true); + return; // Winged Steed of the Ebon Blade case 54729: { |