aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Garden.java19
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Hidden.java6
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 = "";
}