Skip to content

Commit

Permalink
fix inverted mage 2.5 3pc logic
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Nov 21, 2024
1 parent 65a4b74 commit ec302c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sim/mage/item_sets_pve.go
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ var ItemSetTrappingsOfVaultedSecrets = core.NewItemSet(core.ItemSet{
}
}

multiplier = math.Max(1.20, multiplier)
multiplier = math.Min(1.20, multiplier)

// TODO: Additive or Multiplicative?
spell.DamageMultiplier *= multiplier
Expand Down

0 comments on commit ec302c7

Please sign in to comment.