Skip to content

Commit

Permalink
fix timeworn strike with Hammer of Wrath
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Nov 21, 2024
1 parent 3240e1f commit 65a4b74
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sim/common/sod/item_effects/phase_6.go
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,10 @@ func TimewornStrikeAura(agent core.Agent) {
},
})

if !character.HasRangedWeapon() {
return
}

core.MakeProcTriggerAura(&character.Unit, core.ProcTrigger{
Name: "Timeworn Strike Aura Ranged",
Callback: core.CallbackOnSpellHitDealt,
Expand Down

0 comments on commit 65a4b74

Please sign in to comment.