diff options
author | Obsidian <108832807+Obsidianninja11@users.noreply.github.com> | 2024-05-01 00:45:15 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-01 10:45:15 +0200 |
commit | b7bba09e48f61b4eb10ecfe6334391b373fd4867 (patch) | |
tree | 50aeb8e4101694ccda878019e7ee525194f27269 /src/main/java/at/hannibal2/skyhanni/config/commands | |
parent | e096447a212484b269626cd42ab09356b76717d3 (diff) | |
download | skyhanni-b7bba09e48f61b4eb10ecfe6334391b373fd4867.tar.gz skyhanni-b7bba09e48f61b4eb10ecfe6334391b373fd4867.tar.bz2 skyhanni-b7bba09e48f61b4eb10ecfe6334391b373fd4867.zip |
Fix: Composter GfS Messages (#1398)
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 c3d04076a..5eeb1b6ef 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt +++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt @@ -10,6 +10,7 @@ import at.hannibal2.skyhanni.data.ChatManager import at.hannibal2.skyhanni.data.GardenCropMilestonesCommunityFix import at.hannibal2.skyhanni.data.GuiEditManager import at.hannibal2.skyhanni.data.PartyAPI +import at.hannibal2.skyhanni.data.SackAPI import at.hannibal2.skyhanni.data.TitleManager import at.hannibal2.skyhanni.features.bingo.card.BingoCardDisplay import at.hannibal2.skyhanni.features.bingo.card.nextstephelper.BingoNextStepHelper @@ -398,6 +399,10 @@ object Commands { "shtestburrow", "Sets a test burrow waypoint at your location" ) { GriffinBurrowHelper.setTestBurrow(it) } + registerCommand( + "shtestsackapi", + "Get the amount of an item in sacks according to internal feature SackAPI" + ) { SackAPI.testSackAPI(it) } } private fun developersCodingHelp() { |