Skip to content

Commit

Permalink
Merge pull request #22 from wowsims/wildstrikes-fix
Browse files Browse the repository at this point in the history
Core: fix Wild Strikes proccing from OH
rosenrusinov authored Feb 3, 2024

Unverified

This user has not yet uploaded their public signing key.
2 parents 654b668 + 3cfc50b commit 46a24d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sim/core/buffs.go
Original file line number Diff line number Diff line change
@@ -1693,7 +1693,7 @@ func ApplyWildStrikes(character *Character) *Aura {
if spell.ProcMask.Matches(ProcMaskSuppressedExtraAttackAura) {
return
}
if !result.Landed() || !spell.ProcMask.Matches(ProcMaskMelee) {
if !result.Landed() || !spell.ProcMask.Matches(ProcMaskMeleeMH) {
return
}

0 comments on commit 46a24d8

Please sign in to comment.