blob: 36dc3c6f0b244b0d6a4edace5c83c289ffa0fbbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package at.hannibal2.skyhanni.data
import at.hannibal2.skyhanni.events.SecondPassedEvent
import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule
import at.hannibal2.skyhanni.utils.DelayedRun
import at.hannibal2.skyhanni.utils.LorenzUtils
import kotlin.concurrent.fixedRateTimer
@SkyHanniModule
object FixedRateTimerManager {
private var totalSeconds = 0
init {
fixedRateTimer(name = "skyhanni-fixed-rate-timer-manager", period = 1000L) {
DelayedRun.onThread.execute {
if (!LorenzUtils.onHypixel) return@execute
SecondPassedEvent(totalSeconds).postAndCatch()
totalSeconds++
}
}
}
}
|