mirror of
https://github.com/mangosfour/server.git
synced 2025-12-18 19:37:01 +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);
|
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)
|
||||||
|
|
|
||||||
|
|
@ -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__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue