[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); unitTarget->CastSpell(m_caster, 32300, true);
return; return;
} }
case 33676: // Incite Chaos
{
if (!unitTarget || unitTarget->GetTypeId() != TYPEID_PLAYER)
return;
m_caster->CastSpell(unitTarget, 33684, true);
return;
}
case 35865: // Summon Nether Vapor case 35865: // Summon Nether Vapor
{ {
if (!unitTarget) if (!unitTarget)

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 "12613" #define REVISION_NR "12614"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__