aboutsummaryrefslogtreecommitdiff
path: root/src/game/SpellEffects.cpp
diff options
context:
space:
mode:
authorQAston <none@none>2009-03-11 21:36:02 +0100
committerQAston <none@none>2009-03-11 21:36:02 +0100
commitc3026bc7556c0c9511a043756d35d6b8ec1eb692 (patch)
treef2eaf5288528828a964bc7d2bc7979adbce93532 /src/game/SpellEffects.cpp
parent6f4e33c611f0960c7c30ed5f6e8ff5da20c9c3fe (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.cpp10
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;
}