diff options
author | QAston <none@none> | 2009-03-11 21:36:02 +0100 |
---|---|---|
committer | QAston <none@none> | 2009-03-11 21:36:02 +0100 |
commit | c3026bc7556c0c9511a043756d35d6b8ec1eb692 (patch) | |
tree | f2eaf5288528828a964bc7d2bc7979adbce93532 /src/game/SpellEffects.cpp | |
parent | 6f4e33c611f0960c7c30ed5f6e8ff5da20c9c3fe (diff) |
*Fix divine hymn.
*Prevent unexpected behaviour of dummy proc auras combined with ObsModEnergy auras.
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellEffects.cpp')
-rw-r--r-- | src/game/SpellEffects.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 73aea9761b4..ef206ae4660 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -5139,6 +5139,16 @@ void Spell::EffectScriptEffect(uint32 effIndex) } return; } + // Divine Hymn + case 47951: + { + if (!unitTarget) + return; + Unit * target=NULL; + unitTarget->CastSpell(target, 59600, false); + unitTarget->CastSpell(target, 47953, false); + return; + } default: break; } |