mirror of
https://github.com/mangosfour/server.git
synced 2025-12-28 13:37:13 +00:00
[c12614] Implement spell 33676
This commit is contained in:
parent
be42c80608
commit
469af26b94
2 changed files with 9 additions and 1 deletions
|
|
@ -7326,6 +7326,14 @@ void Spell::EffectScriptEffect(SpellEffectEntry const* effect)
|
|||
unitTarget->CastSpell(m_caster, 32300, true);
|
||||
return;
|
||||
}
|
||||
case 33676: // Incite Chaos
|
||||
{
|
||||
if (!unitTarget || unitTarget->GetTypeId() != TYPEID_PLAYER)
|
||||
return;
|
||||
|
||||
m_caster->CastSpell(unitTarget, 33684, true);
|
||||
return;
|
||||
}
|
||||
case 35865: // Summon Nether Vapor
|
||||
{
|
||||
if (!unitTarget)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue