Skip to content

Commit

Permalink
fix lynette c6 missing cons check (#1728)
Browse files Browse the repository at this point in the history
  • Loading branch information
k0l11 authored Oct 20, 2023
1 parent e9058aa commit c01cab4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions internal/characters/lynette/cons.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ func (c *char) c4() {

// When Lynette uses Enigmatic Feint's Enigma Thrust, she will gain an Anemo Infusion and 20% Anemo DMG Bonus for 6s.
func (c *char) c6() {
if c.Base.Cons < 6 {
return
}
duration := int((6 + 0.4) * 60)

// add anemo infusion
Expand Down

0 comments on commit c01cab4

Please sign in to comment.