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-21 02:11:09 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-02-21 02:11:09 +0100
commitcdff2f52c54f05c96b9ca62a536392dd51e49e3f (patch)
tree692ba97250e55e28aa27d52d3877cc34def644c8 /src/main/java/at/hannibal2/skyhanni/config/features
parent26ac6919de473490299142fee3e6fea98048d028 (diff)
downloadskyhanni-cdff2f52c54f05c96b9ca62a536392dd51e49e3f.tar.gz
skyhanni-cdff2f52c54f05c96b9ca62a536392dd51e49e3f.tar.bz2
skyhanni-cdff2f52c54f05c96b9ca62a536392dd51e49e3f.zip
Render always.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Garden.java54
1 files changed, 33 insertions, 21 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 45624e7f4..967c2487b 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java
@@ -24,67 +24,79 @@ public class Garden {
public Position skyMartCopperPricePos = new Position(44, -108, false, true);
@Expose
- @ConfigOption(name = "Visitor Helper", desc = "")
+ @ConfigOption(name = "Visitor", desc = "")
@ConfigEditorAccordion(id = 1)
- public boolean visitorHelper = false;
+ public boolean visitor = false;
@Expose
@ConfigOption(name = "Visitor Timer", desc = "")
@ConfigAccordionId(id = 1)
@ConfigEditorAccordion(id = 2)
- public boolean visitorHelperTimer = false;
+ public boolean visitorTimer = false;
@Expose
@ConfigOption(name = "Visitor Timer", desc = "Timer when the next visitor will appear," +
"and a number how many visitors are already waiting.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 2)
- public boolean visitorHelperTimerEnabled = true;
+ public boolean visitorTimerEnabled = true;
@Expose
@ConfigOption(name = "Visitor Timer Position", desc = "")
- @ConfigEditorButton(runnableId = "visitorHelperTimer", buttonText = "Edit")
+ @ConfigEditorButton(runnableId = "visitorTimer", buttonText = "Edit")
@ConfigAccordionId(id = 2)
- public Position visitorHelperTimerPos = new Position(0, 0, false, true);
+ public Position visitorTimerPos = new Position(0, 0, false, true);
@Expose
- @ConfigOption(name = "Visitor Display", desc = "Show all items needed for the visitors.")
- @ConfigEditorBoolean
+ @ConfigOption(name = "Visitor Items Needed", desc = "")
@ConfigAccordionId(id = 1)
- public boolean visitorHelperDisplay = true;
+ @ConfigEditorAccordion(id = 3)
+ public boolean visitorNeeds = false;
@Expose
- @ConfigOption(name = "Visitor Helper Position", desc = "")
- @ConfigEditorButton(runnableId = "visitorHelper", buttonText = "Edit")
- @ConfigAccordionId(id = 1)
- public Position visitorHelperPos = new Position(0, 0, false, true);
+ @ConfigOption(name = "Items Needed", desc = "Show all items needed for the visitors.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 3)
+ public boolean visitorNeedsDisplay = true;
+
+ @Expose
+ @ConfigOption(name = "Items Needed Position", desc = "")
+ @ConfigEditorButton(runnableId = "visitorNeeds", buttonText = "Edit")
+ @ConfigAccordionId(id = 3)
+ public Position visitorNeedsPos = new Position(0, 0, false, true);
+
+ @Expose
+ @ConfigOption(name = "Only when Close", desc = "Only show the needed items when close to the visitors.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 3)
+ public boolean visitorNeedsOnlyWhenClose = false;
@Expose
@ConfigOption(name = "Highlight Ready", desc = "Highlight the visitor when the required items are in the inventory.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 1)
- public boolean visitorHelperHighlightReady = true;
+ public boolean visitorHighlightReady = true;
@Expose
@ConfigOption(name = "Show Price", desc = "Show the bazaar price of the items required for the visitors.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 1)
- public boolean visitorHelperShowPrice = true;
+ public boolean visitorShowPrice = true;
@Expose
@ConfigOption(name = "Numbers", desc = "")
- @ConfigEditorAccordion(id = 3)
+ @ConfigEditorAccordion(id = 4)
public boolean numbers = false;
@Expose
- @ConfigOption(name = "Crop Milestone", desc = "Show the number of the crop milestone in the inventory.")
+ @ConfigOption(name = "Crop Milestone", desc = "Show the number of crop milestones in the inventory.")
@ConfigEditorBoolean
- @ConfigAccordionId(id = 3)
- public boolean cropMilestoneNumber = true;
+ @ConfigAccordionId(id = 4)
+ public boolean numberCropMilestone = true;
@Expose
@ConfigOption(name = "Crop Upgrades", desc = "Show the number of upgrades in the crop upgrades inventory.")
@ConfigEditorBoolean
- @ConfigAccordionId(id = 3)
- public boolean cropUpgradesNumber = true;
+ @ConfigAccordionId(id = 4)
+ public boolean numberCropUpgrades = true;
}