diff options
| author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-08-02 10:57:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-02 10:57:02 +0200 |
| commit | 2f53d615b8cf6054e96dba6a5ad45ab244b3fc33 (patch) | |
| tree | 8a0ed9e1df9c303c38cdcfa5f0d5add33bd6c9a5 /src/main/java/at/hannibal2/skyhanni/config | |
| parent | a6b7559cec69bda9e8202de6440da784d3f8925a (diff) | |
| download | skyhanni-2f53d615b8cf6054e96dba6a5ad45ab244b3fc33.tar.gz skyhanni-2f53d615b8cf6054e96dba6a5ad45ab244b3fc33.tar.bz2 skyhanni-2f53d615b8cf6054e96dba6a5ad45ab244b3fc33.zip | |
Backend: /shdebugprice (#2289)
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 | 3 |
1 files changed, 2 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 6dd8db8ad..89d7bb9bb 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt +++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt @@ -59,7 +59,6 @@ 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.MiscFeatures import at.hannibal2.skyhanni.features.misc.discordrpc.DiscordRPCManager import at.hannibal2.skyhanni.features.misc.limbo.LimboTimeTracker import at.hannibal2.skyhanni.features.misc.massconfiguration.DefaultConfigFeatures @@ -87,6 +86,7 @@ import at.hannibal2.skyhanni.test.command.TrackSoundsCommand import at.hannibal2.skyhanni.utils.APIUtil import at.hannibal2.skyhanni.utils.ChatUtils import at.hannibal2.skyhanni.utils.ExtendedChatColor +import at.hannibal2.skyhanni.utils.ItemPriceUtils import at.hannibal2.skyhanni.utils.LorenzUtils import at.hannibal2.skyhanni.utils.SoundUtils import at.hannibal2.skyhanni.utils.TabListData @@ -452,6 +452,7 @@ 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) } } private fun developersCodingHelp() { |
