aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-02-27 21:50:39 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-02-27 21:50:39 +0100
commitbb0d26f682e803b83d7d9252f8863285164cba15 (patch)
treecc4c970eddf2d52cc9188420c233dc41c7ae35b0 /src/main/java/at/hannibal2/skyhanni/config/features
parenta8e439c769d21cab0d6dcdb9f6453c169475e966 (diff)
downloadskyhanni-bb0d26f682e803b83d7d9252f8863285164cba15.tar.gz
skyhanni-bb0d26f682e803b83d7d9252f8863285164cba15.tar.bz2
skyhanni-bb0d26f682e803b83d7d9252f8863285164cba15.zip
Added garden crop milestones.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Garden.java21
1 files changed, 21 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 94a3b38cb..6ada96ef0 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java
@@ -113,6 +113,27 @@ public class Garden {
public boolean numberCropUpgrades = true;
@Expose
+ @ConfigOption(name = "Crop Milestone", desc = "")
+ @ConfigEditorAccordion(id = 5)
+ public boolean cropMilestone = false;
+
+ @Expose
+ @ConfigOption(
+ name = "Display",
+ desc = "Show how much more crops are needed to reach the next crop milestone. " +
+ "§cRequires an tool with either an counter or cultivating enchantment in the hand."
+ )
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 5)
+ public boolean cropMilestoneDisplay = true;
+
+ @Expose
+ @ConfigOption(name = "Display Position", desc = "")
+ @ConfigEditorButton(runnableId = "cropMilestone", buttonText = "Edit")
+ @ConfigAccordionId(id = 5)
+ public Position cropMilestoneDisplayPos = new Position(0, 0, false, true);
+
+ @Expose
@ConfigOption(name = "Plot Price", desc = "Show the price of the plot in coins when inside the Configure Plots inventory.")
@ConfigEditorBoolean
public boolean plotPrice = true;