Skip to content

Commit f717722

Browse files
committed
fix: adjust burrow estimation timeout to be shorter
1 parent a3b2a29 commit f717722

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/kotlin/gg/skytils/skytilsmod/features/impl/events/GriffinBurrows.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ object GriffinBurrows {
8282
}
8383
if (!Skytils.config.burrowEstimation) return
8484
BurrowEstimation.guesses.entries.removeIf { (_, instant) ->
85-
Duration.between(instant, Instant.now()).toMinutes() > 30
85+
Duration.between(instant, Instant.now()).toMinutes() > 2
8686
}
8787
BurrowEstimation.arrows.entries.removeIf { (_, instant) ->
88-
Duration.between(instant, Instant.now()).toMinutes() > 5
88+
Duration.between(instant, Instant.now()).toMillis() > 30_000L
8989
}
9090
}
9191

0 commit comments

Comments
 (0)