diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-17 07:25:29 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-17 07:25:29 +0200 |
commit | 8457da3768343138dd13191d5ae27622c0eab3fb (patch) | |
tree | e57da94b742cb676163537b5b566dcda1c80c681 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 3e80a0df99f268d6966d28909dce9dc4052cf5c4 (diff) | |
download | skyhanni-8457da3768343138dd13191d5ae27622c0eab3fb.tar.gz skyhanni-8457da3768343138dd13191d5ae27622c0eab3fb.tar.bz2 skyhanni-8457da3768343138dd13191d5ae27622c0eab3fb.zip |
+ Added Composter Overlay - Show cheapest items for organic matter and fuel, show profit per compost/hour/day and time per compost
+ Added Composter Upgrades Overlay - Show a overview of all composter stats, including time till organic matter and fuel is empty when fully filled and show a preview how these stats change when hovering over an upgrade
+ Hide crop money display, crop milestone display and garden visitor list while inside anita show, skymart or the composter inventory
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Garden.java | 19 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Hidden.java | 6 |
2 files changed, 23 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 79657ae5b..1f5b2a90b 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -756,8 +756,23 @@ public class Garden { @Expose @ConfigOption( - name = "Compact Display", - desc = "Displays the compost data from the tab list in a compact form as gui element." + name = "Composter Overlay", + desc = "Show organic matter, fuel, and profit prices while inside the Composter Inventory." + ) + @ConfigEditorBoolean + @ConfigAccordionId(id = 17) + public boolean composterOverlay = true; + + @Expose + public Position composterOverlayOrganicMatterPos = new Position(140, 152, false, true); + + @Expose + public Position composterOverlayFuelExtrasPos = new Position(-320, 152, false, true); + + @Expose + @ConfigOption( + name = "Display Element", + desc = "Displays the compost data from the tab list as gui element." ) @ConfigEditorBoolean @ConfigAccordionId(id = 17) diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Hidden.java b/src/main/java/at/hannibal2/skyhanni/config/features/Hidden.java index 209ac61f3..f212b50a1 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Hidden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Hidden.java @@ -71,4 +71,10 @@ public class Hidden { @Expose public Map<CropType, Boolean> gardenToolHasBountiful = new HashMap<>(); + + @Expose + public String gardenComposterCurrentOrganicMatterItem = ""; + + @Expose + public String gardenComposterCurrentFuelItem = ""; } |