diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-11 13:25:02 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-11 13:25:02 +0100 |
commit | 5b5434ccadeb25035235a090de9694eda05e8cd4 (patch) | |
tree | f7a2f08e55c2544a6d6aaa102ac77bf509099cb6 | |
parent | b5594a9a8744dc2d547393dc7fba27e6452c1af3 (diff) | |
download | skyhanni-5b5434ccadeb25035235a090de9694eda05e8cd4.tar.gz skyhanni-5b5434ccadeb25035235a090de9694eda05e8cd4.tar.bz2 skyhanni-5b5434ccadeb25035235a090de9694eda05e8cd4.zip |
marked hotswap debug as broken
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/test/HotSwapDetection.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/test/HotSwapDetection.kt b/src/main/java/at/hannibal2/skyhanni/test/HotSwapDetection.kt index e3acc25e7..20a0d99a5 100644 --- a/src/main/java/at/hannibal2/skyhanni/test/HotSwapDetection.kt +++ b/src/main/java/at/hannibal2/skyhanni/test/HotSwapDetection.kt @@ -13,7 +13,8 @@ object HotSwapDetection { private var hotswap = false init { - fixedRateTimer(name = "skyhanni-tps-counter-seconds", period = 1000L) { + // TODO seems broken somehow? + fixedRateTimer(name = "skyhanni-hot-swap-detection", period = 1000L) { val currentTick = MinecraftData.totalTicks val diff = currentTick - latestTick latestTick = currentTick |