diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2023-11-19 17:16:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-19 17:16:17 +0100 |
commit | 21344b74bf0877083b345c5650766b5b7997cc76 (patch) | |
tree | 665b7c36c8a8911bcf3d759598742477d03c55b7 /src/main/java/at/hannibal2/skyhanni/config/commands | |
parent | 5fdd4440016850804ef34057970be6788c27f3e0 (diff) | |
download | skyhanni-21344b74bf0877083b345c5650766b5b7997cc76.tar.gz skyhanni-21344b74bf0877083b345c5650766b5b7997cc76.tar.bz2 skyhanni-21344b74bf0877083b345c5650766b5b7997cc76.zip |
share new crop data (#718)
Added wrong crop milestone step detection. #718
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 a84c86c4f..096078cf5 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt +++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt @@ -4,6 +4,7 @@ import at.hannibal2.skyhanni.SkyHanniMod import at.hannibal2.skyhanni.config.ConfigFileType import at.hannibal2.skyhanni.config.ConfigGuiManager import at.hannibal2.skyhanni.data.ChatManager +import at.hannibal2.skyhanni.data.GardenCropMilestonesFix import at.hannibal2.skyhanni.data.GuiEditManager import at.hannibal2.skyhanni.data.PartyAPI import at.hannibal2.skyhanni.features.bingo.BingoCardDisplay @@ -314,6 +315,10 @@ object Commands { "shconfigmanagerreset", "Reloads the config manager and rendering processors of MoulConfig. This §cWILL RESET §7your config, but also updating the java config files (names, description, orderings and stuff)." ) { SkyHanniDebugsAndTests.configManagerResetCommand(it) } + registerCommand( + "readcropmilestonefromclipboard", + "Read crop milestone from clipboard. This helps fixing wrong crop milestone data" + ) { GardenCropMilestonesFix.readDataFromClipboard() } } private fun internalCommands() { |