Skip to content

Commit

Permalink
dont roll first like
Browse files Browse the repository at this point in the history
  • Loading branch information
haileyok committed Sep 4, 2024
1 parent 5dcb520 commit d60e053
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/custom-animations/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function decideShouldRoll(isSet: boolean, count: number) {
let shouldRoll = false
if (!isSet && count === 0) {
shouldRoll = true
} else if (count > 0 && count < 1000) {
} else if (count > 1 && count < 1000) {
shouldRoll = true
} else if (count > 0) {
const mod = count % 100
Expand Down

0 comments on commit d60e053

Please sign in to comment.