From 5f4d61928fa4b29948a784cf61ebbc5625e2095b Mon Sep 17 00:00:00 2001 From: Xfurry Date: Fri, 20 Jul 2012 18:14:38 +0200 Subject: [PATCH] [12064] Implement spell 56430 --- src/game/SpellEffects.cpp | 9 +++++++++ src/shared/revision_nr.h | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) 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__