Merge pull request #15092 from robinsch/shamanT10enhancement

Core/Spells:  Enhancement Shaman T10 4P bonus set
closes #15090
(cherry picked from commit ab0c0b7cb89c3693b2ce8e8f64a6ea16d9408b27)
This commit is contained in:
Rushor
2015-07-19 01:32:20 +01:00
committed by DDuarte
parent 804b5d2a6d
commit 911349fb77
+1 -1
View File
@@ -6806,7 +6806,7 @@ bool Unit::HandleProcTriggerSpell(Unit* victim, uint32 damage, AuraEffect* trigg
// Item - Shaman T10 Enhancement 4P Bonus
if (AuraEffect const* aurEff = GetAuraEffect(70832, 0))
if (Aura const* maelstrom = GetAura(53817))
if ((maelstrom->GetStackAmount() == maelstrom->GetSpellInfo()->StackAmount - 1) && roll_chance_i(aurEff->GetAmount()))
if ((maelstrom->GetStackAmount() == maelstrom->GetSpellInfo()->StackAmount) && roll_chance_i(aurEff->GetAmount()))
CastSpell(this, 70831, true, castItem, triggeredByAura);
break;
}