mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-20 01:15:35 +01:00
Merge pull request #4294 from Warpten/warrior
Core/Spells: Fix Warrior's T10 4P DPS Bonus.
This commit is contained in:
@@ -8924,6 +8924,20 @@ bool Unit::HandleProcTriggerSpell(Unit* victim, uint32 damage, AuraEffect* trigg
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 46916: // Slam! (Bloodsurge proc)
|
||||
case 52437: // Sudden Death
|
||||
{
|
||||
// Item - Warrior T10 Melee 4P Bonus
|
||||
if (AuraEffect const* aurEff = GetAuraEffect(70847, 0))
|
||||
{
|
||||
if (!roll_chance_i(aurEff->GetAmount()))
|
||||
break;
|
||||
CastSpell(this, 70849, true, castItem, triggeredByAura); // Extra Charge!
|
||||
CastSpell(this, 71072, true, castItem, triggeredByAura); // Slam GCD Reduced
|
||||
CastSpell(this, 71069, true, castItem, triggeredByAura); // Execute GCD Reduced
|
||||
}
|
||||
break;
|
||||
}
|
||||
// Sword and Board
|
||||
case 50227:
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user