[c12614] Implement spell 33676

This commit is contained in:
Xfurry 2013-05-31 12:03:23 +01:00 committed by Antz
parent be42c80608
commit 469af26b94
2 changed files with 9 additions and 1 deletions

View file

@ -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)