diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index 97d528e54..3ab07d0b8 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -1782,6 +1782,7 @@ void Spell::SetTargetMap(SpellEffectIndex effIndex, uint32 targetMode, UnitList& break; case 28796: // Poison Bolt Volley case 29213: // Curse of the Plaguebringer + case 30004: // Flame Wreath case 31298: // Sleep case 39992: // Needle Spine Targeting (BT, Warlord Najentus) case 51904: // Limiting the count of Summoned Ghouls diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 3c4c94316..e2444bb20 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -1272,6 +1272,30 @@ void Spell::EffectDummy(SpellEffectEntry const* effect) return; } + case 29969: // Summon Blizzard + { + if (!unitTarget) + return; + + unitTarget->CastSpell(unitTarget, 29952, true, NULL, NULL, m_caster->GetObjectGuid()); + return; + } + case 29979: // Massive Magnetic Pull + { + if (!unitTarget) + return; + + m_caster->CastSpell(unitTarget, 30010, true); + return; + } + case 30004: // Flame Wreath + { + if (!unitTarget || unitTarget->GetTypeId() != TYPEID_PLAYER) + return; + + m_caster->CastSpell(unitTarget, 29946, true); + return; + } case 30458: // Nigh Invulnerability { if (!m_CastItem) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index e1a10a223..db2e260d5 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 "12192" + #define REVISION_NR "12193" #endif // __REVISION_NR_H__