We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3b2a29 commit f717722Copy full SHA for f717722
src/main/kotlin/gg/skytils/skytilsmod/features/impl/events/GriffinBurrows.kt
@@ -82,10 +82,10 @@ object GriffinBurrows {
82
}
83
if (!Skytils.config.burrowEstimation) return
84
BurrowEstimation.guesses.entries.removeIf { (_, instant) ->
85
- Duration.between(instant, Instant.now()).toMinutes() > 30
+ Duration.between(instant, Instant.now()).toMinutes() > 2
86
87
BurrowEstimation.arrows.entries.removeIf { (_, instant) ->
88
- Duration.between(instant, Instant.now()).toMinutes() > 5
+ Duration.between(instant, Instant.now()).toMillis() > 30_000L
89
90
91
0 commit comments