diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 011c762e2..1365ab565 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -2446,6 +2446,15 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) return; } + case 56430: // Arcane Bomb + { + if (!unitTarget) + return; + + unitTarget->CastSpell(unitTarget, 56431, true, NULL, NULL, m_caster->GetObjectGuid()); + unitTarget->CastSpell(unitTarget, 56432, true, NULL, NULL, m_caster->GetObjectGuid()); + return; + } case 57908: // Stain Cloth { // nothing do more diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 4d6bca02b..48dcca9fc 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 "12063" + #define REVISION_NR "12064" #endif // __REVISION_NR_H__