Skip to content

Commit

Permalink
fix muradin proc (#4011)
Browse files Browse the repository at this point in the history
  • Loading branch information
lime-green authored Nov 5, 2023
1 parent 10ac32b commit 1f0423e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sim/common/wotlk/stat_bonus_stacking.go
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,8 @@ func init() {
Duration: time.Second * 10,
MaxStacks: 10,
Bonus: stats.Stats{stats.SpellPower: 18},
Callback: core.CallbackOnSpellHitDealt,
ProcMask: core.ProcMaskSpellOrProc,
Callback: core.CallbackOnSpellHitDealt | core.CallbackOnPeriodicDamageDealt,
ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskWeaponProc | core.ProcMaskSuppressedProc,
Harmful: true,
})
newStackingStatBonusEffect(StackingStatBonusEffect{
Expand All @@ -280,8 +280,8 @@ func init() {
Duration: time.Second * 10,
MaxStacks: 10,
Bonus: stats.Stats{stats.SpellPower: 20},
Callback: core.CallbackOnSpellHitDealt,
ProcMask: core.ProcMaskSpellOrProc,
Callback: core.CallbackOnSpellHitDealt | core.CallbackOnPeriodicDamageDealt,
ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskWeaponProc | core.ProcMaskSuppressedProc,
Harmful: true,
})
newStackingStatBonusEffect(StackingStatBonusEffect{
Expand Down

0 comments on commit 1f0423e

Please sign in to comment.