Skip to content

Commit

Permalink
Fix stacks from A1 (heizou) (#639)
Browse files Browse the repository at this point in the history
  • Loading branch information
imring authored Jul 17, 2022
1 parent 8a6c42a commit 4042562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/characters/heizou/skill.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ func (c *char) skillHoldDuration(stacks int) int {
//diff is the number of stacks we must charge up to reach the desired state
diff := stacks - c.decStack
if diff < 0 {
diff = c.decStack
diff = 0
}
if diff > 4 {
diff = 4
Expand Down

0 comments on commit 4042562

Please sign in to comment.