Skip to content

Commit

Permalink
fix rogue draught of sands multiplier
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Dec 27, 2024
1 parent f385427 commit b4caaf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sim/rogue/talents.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func (rogue *Rogue) applyMurder() {
})
} else if rogue.Consumes.MiscConsumes != nil && rogue.Consumes.MiscConsumes.DraughtOfTheSands {
rogue.Env.RegisterPostFinalizeEffect(func() {
multiplier := 1.03
multiplier := 1.02
for _, t := range rogue.Env.Encounter.Targets {
for _, at := range rogue.AttackTables[t.UnitIndex] {
at.DamageDealtMultiplier *= multiplier
Expand Down

0 comments on commit b4caaf1

Please sign in to comment.