diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index 09cd19491ff..913f942eafc 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -1595,6 +1595,8 @@ void Spell::SetTargetMap(SpellEffectIndex effIndex, uint32 targetMode, UnitList& case 804: // Explode Bug case 23138: // Gate of Shazzrah case 28560: // Summon Blizzard + case 30541: // Blaze (Magtheridon) + case 30572: // Quake (Magtheridon) case 30769: // Pick Red Riding Hood case 30835: // Infernal Relay case 31347: // Doom TODO: exclude top threat target from target selection diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 490cf78c288..832cac46b76 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -7111,6 +7111,14 @@ void Spell::EffectScriptEffect(SpellEffectIndex eff_idx) break; } + case 30541: // Blaze + { + if (!unitTarget) + return; + + unitTarget->CastSpell(unitTarget, 30542, true); + break; + } case 30769: // Pick Red Riding Hood { if (!unitTarget || unitTarget->GetTypeId() != TYPEID_PLAYER) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index aca5cff1c55..effca9c7646 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 "12206" + #define REVISION_NR "12207" #endif // __REVISION_NR_H__