From ee0ecddc9f921a469fd85073a6bcad101d750e02 Mon Sep 17 00:00:00 2001 From: Kayla Glick Date: Thu, 3 Oct 2024 11:42:24 -0400 Subject: [PATCH] warrior set can proc from misses --- sim/warrior/item_sets_pve.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sim/warrior/item_sets_pve.go b/sim/warrior/item_sets_pve.go index 2a6fefd44a..75abfd8c53 100644 --- a/sim/warrior/item_sets_pve.go +++ b/sim/warrior/item_sets_pve.go @@ -344,13 +344,13 @@ var ItemSetImmoveableWrath = core.NewItemSet(core.ItemSet{ warrior := agent.(WarriorAgent).GetWarrior() flurryAura := warrior.makeFlurryAura(5) - // The consumption trigger may not exist if the Shaman doesn't talent into Flurry + // The consumption trigger may not exist if the Warrior doesn't talent into Flurry warrior.makeFlurryConsumptionTrigger(flurryAura) core.MakePermanent(warrior.RegisterAura(core.Aura{ Label: "S03 - Item - T2 - Warrior - Protection 4P Bonus", OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) { - if spell.SpellCode == SpellCode_WarriorRevenge && result.Landed() { + if spell.SpellCode == SpellCode_WarriorRevenge { flurryAura.Activate(sim) flurryAura.SetStacks(sim, 3) }