diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 22f4f61d1..317f44ffc 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -1476,6 +1476,23 @@ void Spell::EffectDummy(SpellEffectEntry const* effect) return; } + case 42628: // Fire Bomb (throw) + { + if (!unitTarget) + return; + + unitTarget->CastSpell(unitTarget, 42629, true); + return; + } + case 42631: // Fire Bomb (explode) + { + if (!unitTarget) + return; + + unitTarget->RemoveAurasDueToSpell(42629); + unitTarget->CastSpell(unitTarget, 42630, true); + return; + } case 42793: // Burn Body { if (!unitTarget || unitTarget->GetTypeId() != TYPEID_UNIT || m_caster->GetTypeId() != TYPEID_PLAYER) @@ -1523,6 +1540,22 @@ void Spell::EffectDummy(SpellEffectEntry const* effect) m_caster->CastSpell(m_caster, 43072, true); return; } + case 43096: // Summon All Players + { + if (!unitTarget || unitTarget->GetTypeId() != TYPEID_PLAYER) + return; + + m_caster->CastSpell(unitTarget, 43097, true); + return; + } + case 43144: // Hatch All Eggs + { + if (!unitTarget) + return; + + unitTarget->CastSpell(unitTarget, 42493, true, NULL, NULL, m_caster->GetObjectGuid()); + return; + } case 43209: // Place Ram Meat { if (!unitTarget) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index b47b30769..017633892 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 "12204" + #define REVISION_NR "12205" #endif // __REVISION_NR_H__