mirror of
https://github.com/mangosfour/server.git
synced 2025-12-28 13:37:13 +00:00
[12035] Implement spells 33923 and 38796
This commit is contained in:
parent
0cce85e46e
commit
7682400a1f
2 changed files with 10 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue