Skip to content

Commit

Permalink
warrior set can proc from misses
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Oct 3, 2024
1 parent 96860cf commit ee0ecdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sim/warrior/item_sets_pve.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit ee0ecdd

Please sign in to comment.