diff options
| author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-06-20 23:24:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-20 23:24:42 +0200 |
| commit | 9810bf56d8852806a812ba77702b670bcfe91e61 (patch) | |
| tree | d0b1c9b1bb101f57b5824938cd19a24c17f114b3 /src/main/java/at/hannibal2/skyhanni/config/commands | |
| parent | 115aeb025e25e06216ec42031abba0ee7c1a32b6 (diff) | |
| download | skyhanni-9810bf56d8852806a812ba77702b670bcfe91e61.tar.gz skyhanni-9810bf56d8852806a812ba77702b670bcfe91e61.tar.bz2 skyhanni-9810bf56d8852806a812ba77702b670bcfe91e61.zip | |
Debug: Added /shtestisland (#2107)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt | 5 |
1 files changed, 5 insertions, 0 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 92a723707..cb85989c9 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt +++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt @@ -70,6 +70,7 @@ import at.hannibal2.skyhanni.features.slayer.SlayerProfitTracker import at.hannibal2.skyhanni.test.DebugCommand import at.hannibal2.skyhanni.test.GraphEditor import at.hannibal2.skyhanni.test.PacketTest +import at.hannibal2.skyhanni.test.SkyBlockIslandTest import at.hannibal2.skyhanni.test.SkyHanniConfigSearchResetCommand import at.hannibal2.skyhanni.test.SkyHanniDebugsAndTests import at.hannibal2.skyhanni.test.TestBingo @@ -446,6 +447,10 @@ object Commands { "shtestgriffinspots", "Show potential griffin spots around you.", ) { GriffinBurrowHelper.testGriffinSpots() } + registerCommand( + "shtestisland", + "Sets the current skyblock island for testing purposes.", + ) { SkyBlockIslandTest.onCommand(it) } } private fun developersCodingHelp() { |
