summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-04-26 12:46:24 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-04-26 12:46:24 +0200
commite098da87f159baa8fcab8435d9a89d4f7d738ffd (patch)
tree861f37b50e73b0cfe1ba47fc6ef0922f658b03f7 /src/main/java/at/hannibal2/skyhanni/config
parent5bfb3991eb644f12bed3cad69c8d775cccda92bf (diff)
downloadskyhanni-e098da87f159baa8fcab8435d9a89d4f7d738ffd.tar.gz
skyhanni-e098da87f159baa8fcab8435d9a89d4f7d738ffd.tar.bz2
skyhanni-e098da87f159baa8fcab8435d9a89d4f7d738ffd.zip
Removed Potion Affinity Talisman and Cropie Talisman from the composter item list.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt2
1 files changed, 2 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 e1a4533e7..986ad0405 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -9,6 +9,7 @@ import at.hannibal2.skyhanni.features.bingo.BingoCardDisplay
import at.hannibal2.skyhanni.features.bingo.BingoNextStepHelper
import at.hannibal2.skyhanni.features.event.diana.BurrowWarpHelper
import at.hannibal2.skyhanni.features.garden.GardenCropTimeCommand
+import at.hannibal2.skyhanni.features.garden.composter.ComposterOverlay
import at.hannibal2.skyhanni.features.garden.farming.CropSpeedMeter
import at.hannibal2.skyhanni.features.misc.CollectionCounter
import at.hannibal2.skyhanni.features.misc.MarkedPlayerManager
@@ -57,6 +58,7 @@ object Commands {
registerCommand("shtogglehypixelapierrors") { APIUtil.toggleApiErrorMessages() }
registerCommand("shcropspeedmeter") { CropSpeedMeter.toggle() }
registerCommand("shcroptime") { GardenCropTimeCommand.onCommand(it) }
+ registerCommand("shtestcomposter") { ComposterOverlay.onCommand(it) }
}
private fun registerCommand(name: String, function: (Array<String>) -> Unit) {