mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
[9536] Implement item 46017 effect.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
0fae59bd50
commit
dc7e4b43e7
2 changed files with 12 additions and 1 deletions
|
|
@ -5638,6 +5638,17 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura* triggeredByAu
|
|||
pVictim->RemoveSpellsCausingAura(SPELL_AURA_PERIODIC_DAMAGE_PERCENT);
|
||||
return true;
|
||||
}
|
||||
// Blessing of Ancient Kings
|
||||
case 64411:
|
||||
{
|
||||
// for DOT procs
|
||||
if (!IsPositiveSpell(procSpell->Id))
|
||||
return false;
|
||||
|
||||
triggered_spell_id = 64413;
|
||||
basepoints[0] = damage * 15 / 100;
|
||||
break;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue