aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/misc
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/misc')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/misc/TpsCounter.kt11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/TpsCounter.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/TpsCounter.kt
index 0c6521e9c..ed6d3f63c 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/misc/TpsCounter.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/misc/TpsCounter.kt
@@ -8,6 +8,7 @@ import at.hannibal2.skyhanni.events.GuiRenderEvent
import at.hannibal2.skyhanni.events.LorenzWorldChangeEvent
import at.hannibal2.skyhanni.events.minecraft.packet.PacketReceivedEvent
import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule
+import at.hannibal2.skyhanni.utils.ChatUtils
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.LorenzUtils.round
import at.hannibal2.skyhanni.utils.RenderUtils.renderString
@@ -32,7 +33,7 @@ object TpsCounter {
init {
// TODO use SecondPassedEvent + passedSince
fixedRateTimer(name = "skyhanni-tps-counter-seconds", period = 1000L) {
- if (!isEnabled()) return@fixedRateTimer
+ if (!LorenzUtils.inSkyBlock) return@fixedRateTimer
if (packetsFromLastSecond == 0) return@fixedRateTimer
if (ignoreFirstTicks > 0) {
@@ -62,7 +63,7 @@ object TpsCounter {
}
// TODO use DelayedRun
fixedRateTimer(name = "skyhanni-tps-counter-ticks", period = 50L) {
- if (!isEnabled()) return@fixedRateTimer
+ if (!LorenzUtils.inSkyBlock) return@fixedRateTimer
if (hasPacketReceived) {
hasPacketReceived = false
@@ -71,6 +72,10 @@ object TpsCounter {
}
}
+ fun tpsCommand() {
+ ChatUtils.chat(display)
+ }
+
@SubscribeEvent
fun onWorldChange(event: LorenzWorldChangeEvent) {
tpsList.clear()
@@ -81,7 +86,7 @@ object TpsCounter {
@HandleEvent(priority = HandleEvent.LOW, receiveCancelled = true)
fun onPacketReceive(event: PacketReceivedEvent) {
- if (!config.tpsDisplay) return
+ if (!LorenzUtils.inSkyBlock) return
hasPacketReceived = true
}