[12035] Implement spells 33923 and 38796

This commit is contained in:
Xfurry 2012-07-13 13:49:33 +02:00 committed by Schmoozerd
parent 0cce85e46e
commit 7682400a1f
2 changed files with 10 additions and 1 deletions

View file

@ -1299,6 +1299,15 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx)
m_caster->CastSpell(m_caster, spell_id, true, NULL); m_caster->CastSpell(m_caster, spell_id, true, NULL);
return; 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 case 35745: // Socrethar's Stone
{ {
uint32 spell_id; uint32 spell_id;

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "12034" #define REVISION_NR "12035"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__