diff options
author | saga <45262877+saga-00@users.noreply.github.com> | 2024-08-31 16:26:47 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-31 21:26:47 +0200 |
commit | c834fbbb6a535b0c0c27d02c893433e687332268 (patch) | |
tree | 7dec3d26fd4b90c02a0286ea84aeff3f7760fe3d /src/main/java/at/hannibal2/skyhanni/config | |
parent | 31f9e29c0aa055b615d1eaaf7bca9d8d10b0ba7e (diff) | |
download | skyhanni-c834fbbb6a535b0c0c27d02c893433e687332268.tar.gz skyhanni-c834fbbb6a535b0c0c27d02c893433e687332268.tar.bz2 skyhanni-c834fbbb6a535b0c0c27d02c893433e687332268.zip |
Feature: /shtps command (#1961)
Co-authored-by: Cal <cwolfson58@gmail.com>
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt index f132df81b..c14023dba 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt +++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt @@ -63,6 +63,7 @@ import at.hannibal2.skyhanni.features.minion.MinionFeatures import at.hannibal2.skyhanni.features.misc.CollectionTracker import at.hannibal2.skyhanni.features.misc.LockMouseLook import at.hannibal2.skyhanni.features.misc.MarkedPlayerManager +import at.hannibal2.skyhanni.features.misc.TpsCounter import at.hannibal2.skyhanni.features.misc.discordrpc.DiscordRPCManager import at.hannibal2.skyhanni.features.misc.limbo.LimboTimeTracker import at.hannibal2.skyhanni.features.misc.massconfiguration.DefaultConfigFeatures @@ -355,6 +356,10 @@ object Commands { "shcolors", "Prints a list of all Minecraft color & formatting codes in chat.", ) { ColorFormattingHelper.printColorCodeList() } + registerCommand( + "shtps", + "Informs in chat about the server ticks per second (TPS)." + ) { TpsCounter.tpsCommand() } } private fun usersBugFix() { @@ -470,7 +475,10 @@ object Commands { "shtestisland", "Sets the current skyblock island for testing purposes.", ) { SkyBlockIslandTest.onCommand(it) } - registerCommand("shdebugprice", "Debug different price sources for an item.") { ItemPriceUtils.debugItemPrice(it) } + registerCommand( + "shdebugprice", + "Debug different price sources for an item." + ) { ItemPriceUtils.debugItemPrice(it) } registerCommand( "shdebugscoreboard", "Monitors the scoreboard changes: Prints the raw scoreboard lines in the console after each update, with time since last update.", |