Skip to content

Commit

Permalink
Merge pull request #1120 from sanguinerarogue/VenomousTotemFix
Browse files Browse the repository at this point in the history
Venomous Totem fix
  • Loading branch information
sanguinerarogue authored Oct 10, 2024
2 parents 028e512 + 0703184 commit 8e90820
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sim/rogue/poisons.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const (
)

func (rogue *Rogue) GetInstantPoisonProcChance() float64 {
return (0.2 + rogue.improvedPoisons() + rogue.additivePoisonBonusChance) * (1 + rogue.instantPoisonProcChanceBonus)
return (0.2 + rogue.improvedPoisons()) * (1 + rogue.instantPoisonProcChanceBonus) + rogue.additivePoisonBonusChance
}

func (rogue *Rogue) GetDeadlyPoisonProcChance() float64 {
Expand Down

0 comments on commit 8e90820

Please sign in to comment.