[11891] Implement aura handling for spells 61900, 62019

Signed-off-by: Schmoozerd <schmoozerd@scriptdev2.com>
This commit is contained in:
Xfurry 2012-01-30 01:07:21 +01:00 committed by Schmoozerd
parent 3e552fc739
commit 85309aa3c1
2 changed files with 13 additions and 1 deletions

View file

@ -2649,6 +2649,13 @@ void Aura::HandleAuraDummy(bool apply, bool Real)
}
return;
}
case 61900: // Electrical Charge
{
if (m_removeMode == AURA_REMOVE_BY_DEATH)
target->CastSpell(target, GetSpellProto()->CalculateSimpleValue(EFFECT_INDEX_0), true);
return;
}
case 68839: // Corrupt Soul
{
// Knockdown Stun
@ -7872,6 +7879,11 @@ void Aura::PeriodicDummyTick()
case 2: target->CastSpell(target, 55739, true); break;
}
return;
case 62019: // Rune of Summoning
{
target->CastSpell(target, 62020, true, NULL, this);
return;
}
case 62566: // Healthy Spore Summon Periodic
{
target->CastSpell(target, 62582, true);

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "11890"
#define REVISION_NR "11891"
#endif // __REVISION_NR_H__