mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-20 09:17:36 +01:00
Core/Spells: Fixed Reign of the Dead/Unliving trinket, patch by un.spike
Closes issue #3661. --HG-- branch : trunk
This commit is contained in:
@@ -8477,6 +8477,24 @@ bool Unit::HandleProcTriggerSpell(Unit *pVictim, uint32 damage, AuraEffect* trig
|
||||
target = pVictim;
|
||||
break;
|
||||
}
|
||||
//Item - Coliseum 25 Normal Caster Trinket
|
||||
case 67712:
|
||||
{
|
||||
if(!pVictim || !pVictim->isAlive())
|
||||
return false;
|
||||
// stacking
|
||||
CastSpell(this, 67713, true, NULL, triggeredByAura);
|
||||
|
||||
Aura * dummy = GetAura(67713);
|
||||
// release at 3 aura in stack (cont contain in basepoint of trigger aura)
|
||||
if(!dummy || dummy->GetStackAmount() < triggerAmount)
|
||||
return false;
|
||||
|
||||
RemoveAurasDueToSpell(67713);
|
||||
trigger_spell_id = 67714;
|
||||
target = pVictim;
|
||||
break;
|
||||
}
|
||||
//Item - Coliseum 25 Heroic Caster Trinket
|
||||
case 67758:
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user