diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-29 20:55:13 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-29 20:55:13 +0200 |
commit | 8f57726ec406f8f8056ef54f11051a2bfbd1a69e (patch) | |
tree | ccb6026348191b957a6a78db33595793076c96a0 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | c48769e6f0962b545de3e02890d3079ed2af9508 (diff) | |
download | skyhanni-8f57726ec406f8f8056ef54f11051a2bfbd1a69e.tar.gz skyhanni-8f57726ec406f8f8056ef54f11051a2bfbd1a69e.tar.bz2 skyhanni-8f57726ec406f8f8056ef54f11051a2bfbd1a69e.zip |
Added Composter Compact Display - Displays the compost data from the tab list in a compact form as gui element
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Garden.java | 15 |
1 files changed, 15 insertions, 0 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 aba49896a..dd78c3095 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -602,7 +602,22 @@ public class Garden { @Expose public Position anitaMedalProfitPos = new Position(206, 158, false, true); + @Expose + @ConfigOption(name = "Composter", desc = "") + @ConfigEditorAccordion(id = 16) + public boolean composter = false; + @Expose + @ConfigOption( + name = "Compact Display", + desc = "Displays the compost data from the tab list in a compact form as gui element." + ) + @ConfigEditorBoolean + @ConfigAccordionId(id = 16) + public boolean composterDisplayEnabled = true; + + @Expose + public Position composterDisplayPos = new Position(-363, 13, false, true); @Expose @ConfigOption(name = "Plot Price", desc = "Show the price of the plot in coins when inside the Configure Plots inventory.") |