diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 4116d9d18..cd174c451 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -7110,6 +7110,16 @@ void Spell::EffectScriptEffect(SpellEffectIndex eff_idx) unitTarget->RemoveAurasDueToSpell(47636); return; } + case 47703: // Unholy Union + { + m_caster->CastSpell(m_caster, 50254, true); + return; + } + case 47724: // Frost Draw + { + m_caster->CastSpell(m_caster, 50239, true); + return; + } case 48603: // High Executor's Branding Iron // Torture the Torturer: High Executor's Branding Iron Impact unitTarget->CastSpell(unitTarget, 48614, true); @@ -7277,6 +7287,11 @@ void Spell::EffectScriptEffect(SpellEffectIndex eff_idx) return; } + case 50252: // Blood Draw + { + m_caster->CastSpell(m_caster, 50250, true); + return; + } case 50439: // Script Cast Summon Image of Drakuru 05 { // TODO: check if summon already exist, if it does in this instance, return. diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index da67dc10d..12dcfd6af 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "12002" + #define REVISION_NR "12003" #endif // __REVISION_NR_H__