diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 8980f24be..a32bd9b43 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -1299,6 +1299,15 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) m_caster->CastSpell(m_caster, spell_id, true, NULL); return; } + case 33923: // Sonic Boom + case 38796: // Sonic Boom (heroic) + { + if (!unitTarget) + return; + + unitTarget->CastSpell(unitTarget, m_spellInfo->Id == 33923 ? 33666 : 38795, true); + return; + } case 35745: // Socrethar's Stone { uint32 spell_id; diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 9994376ea..d3b11c3a8 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 "12034" + #define REVISION_NR "12035" #endif // __REVISION_NR_H__