Skip to content

Commit

Permalink
Merge pull request #1214 from JJwang11/add_ranged_to_slaying_enchants
Browse files Browse the repository at this point in the history
belated ranged fixes to slaying enchants
  • Loading branch information
kayla-glick authored Jan 14, 2025
2 parents 490006d + e4fb471 commit fea92d8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions sim/common/vanilla/enchant_effects.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,10 @@ func init() {

w.BaseDamageMin += 2
w.BaseDamageMax += 2

w = character.AutoAttacks.Ranged()
w.BaseDamageMin += 2
w.BaseDamageMax += 2
}
})

Expand Down Expand Up @@ -189,6 +193,10 @@ func init() {

w.BaseDamageMin += 6
w.BaseDamageMax += 6

w = character.AutoAttacks.Ranged()
w.BaseDamageMin += 6
w.BaseDamageMax += 6
}
})

Expand All @@ -204,6 +212,10 @@ func init() {

w.BaseDamageMin += 6
w.BaseDamageMax += 6

w = character.AutoAttacks.Ranged()
w.BaseDamageMin += 6
w.BaseDamageMax += 6
}
})

Expand Down

0 comments on commit fea92d8

Please sign in to comment.