From c64f9f81d4908605341cc519743d5c4540d7925d Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Fri, 31 Mar 2023 16:38:28 +0200 Subject: Fixed categories 'Anita Medal Profit' and 'Composter' opening at the same time --- src/main/java/at/hannibal2/skyhanni/config/features/Garden.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java index 02b31b377..f9b303b6a 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -673,7 +673,7 @@ public class Garden { @Expose @ConfigOption(name = "Composter", desc = "") - @ConfigEditorAccordion(id = 16) + @ConfigEditorAccordion(id = 17) public boolean composter = false; @Expose @@ -682,7 +682,7 @@ public class Garden { desc = "Displays the compost data from the tab list in a compact form as gui element." ) @ConfigEditorBoolean - @ConfigAccordionId(id = 16) + @ConfigAccordionId(id = 17) public boolean composterDisplayEnabled = true; @Expose -- cgit From 004a75c74d5f26443d08986f862353ce59335a4d Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Fri, 31 Mar 2023 16:39:29 +0200 Subject: Fixed 'Mark Own Name' setting not saving when restarting --- src/main/java/at/hannibal2/skyhanni/config/features/MarkedPlayers.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/MarkedPlayers.java b/src/main/java/at/hannibal2/skyhanni/config/features/MarkedPlayers.java index 89d5a624c..6cdb94590 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/MarkedPlayers.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/MarkedPlayers.java @@ -1,6 +1,5 @@ package at.hannibal2.skyhanni.config.features; -import at.hannibal2.skyhanni.features.misc.MarkedPlayerManager; import com.google.gson.annotations.Expose; import io.github.moulberry.moulconfig.annotations.ConfigEditorBoolean; import io.github.moulberry.moulconfig.annotations.ConfigOption; @@ -18,6 +17,7 @@ public class MarkedPlayers { @ConfigEditorBoolean public boolean highlightInChat = true; + @Expose @ConfigOption(name = "Mark Own Name", desc = "Mark own player name.") @ConfigEditorBoolean() public Property markOwnName = Property.of(false); -- cgit From 7022e573f5dac324d2c50ccbfd43166f2ed074c9 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Fri, 31 Mar 2023 16:40:13 +0200 Subject: Fixed wrong crop name format in some messages --- src/main/java/at/hannibal2/skyhanni/features/garden/CropType.kt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/CropType.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/CropType.kt index 18e701cb5..5de01ffaa 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/CropType.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/CropType.kt @@ -13,6 +13,10 @@ enum class CropType(val cropName: String, val toolName: String) { MUSHROOM("Mushroom", "FUNGI_CUTTER"), ; + override fun toString(): String { + return cropName + } + companion object { fun getByName(name: String) = values().firstOrNull { it.cropName == name } -- cgit From c0e13b2c33ace3d22639088266454a8c57200d12 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Fri, 31 Mar 2023 18:01:48 +0200 Subject: Fixed typo --- src/main/java/at/hannibal2/skyhanni/config/features/Garden.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java index f9b303b6a..1a46c3785 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -246,7 +246,7 @@ public class Garden { @Expose @ConfigOption( name = "Always On", - desc = "Show the Best Display always while on the ") + desc = "Show the Best Display always while on the garden.") @ConfigEditorBoolean @ConfigAccordionId(id = 7) public boolean cropMilestoneBestAlwaysOn = false; -- cgit