mirror of
https://github.com/mangosfour/server.git
synced 2025-12-31 04:37:04 +00:00
[11891] Implement aura handling for spells 61900, 62019
Signed-off-by: Schmoozerd <schmoozerd@scriptdev2.com>
This commit is contained in:
parent
3e552fc739
commit
85309aa3c1
2 changed files with 13 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue