aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/commands
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-04-26 13:26:51 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-04-26 13:26:51 +0200
commit7944f8f88ec20b8caea0c41757366734682e059d (patch)
tree8039e038dedbf759c94897970bff6164f5c0684a /src/main/java/at/hannibal2/skyhanni/config/commands
parentc630877d373f1e2313cd2fa78df7130dff3d7382 (diff)
downloadskyhanni-7944f8f88ec20b8caea0c41757366734682e059d.tar.gz
skyhanni-7944f8f88ec20b8caea0c41757366734682e059d.tar.bz2
skyhanni-7944f8f88ec20b8caea0c41757366734682e059d.zip
Added command /shclearminiondata - Manually reset all private island minion location data.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands')
-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 452b038e7..259beee57 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -12,6 +12,7 @@ import at.hannibal2.skyhanni.features.garden.GardenAPI
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.minion.MinionFeatures
import at.hannibal2.skyhanni.features.misc.CollectionCounter
import at.hannibal2.skyhanni.features.misc.MarkedPlayerManager
import at.hannibal2.skyhanni.test.LorenzTest
@@ -61,6 +62,7 @@ object Commands {
registerCommand("shcroptime") { GardenCropTimeCommand.onCommand(it) }
registerCommand("shtestcomposter") { ComposterOverlay.onCommand(it) }
registerCommand("shclearcropspeed") { GardenAPI.clearCropSpeed() }
+ registerCommand("shclearminiondata") { MinionFeatures.clearMinionData() }
}
private fun registerCommand(name: String, function: (Array<String>) -> Unit) {