aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-03-01 13:21:55 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-03-01 13:21:55 +0100
commitc5881240487d63e9497ce404205b2f2f31a48f81 (patch)
tree29bdd632306d1e1b0ee97c2667237bde44a5b22f /src/main/java/at/hannibal2/skyhanni/config/features
parentbf65ac2d17c1cd86f6ad330c3ee5bf158bbb7a23 (diff)
downloadskyhanni-c5881240487d63e9497ce404205b2f2f31a48f81.tar.gz
skyhanni-c5881240487d63e9497ce404205b2f2f31a48f81.tar.bz2
skyhanni-c5881240487d63e9497ce404205b2f2f31a48f81.zip
Added option to always show Best Crop Time while in garden. (Default disabled)
Added option to only show title or only show chat message when a new visitor arrives.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Garden.java18
1 files changed, 16 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 b0d445f5e..d05b29442 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java
@@ -78,10 +78,16 @@ public class Garden {
public boolean visitorNeedsOnlyWhenClose = false;
@Expose
- @ConfigOption(name = "Notification", desc = "Show as title and in chat when a new visitor is visiting your island.")
+ @ConfigOption(name = "Notification Chat", desc = "Show in chat when a new visitor is visiting your island.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 1)
- public boolean visitorNotification = true;
+ public boolean visitorNotificationChat = true;
+
+ @Expose
+ @ConfigOption(name = "Notification Title", desc = "Show a title when a new visitor is visiting your island.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 1)
+ public boolean visitorNotificationTitle = true;
@Expose
@ConfigOption(name = "Highlight", desc = "Highlight visitor when the required items are in the inventory or the visitor is new and needs to checked what items it needs.")
@@ -164,6 +170,14 @@ public class Garden {
public int cropMilestoneShowOnlyBest = 10;
@Expose
+ @ConfigOption(
+ name = "Always On",
+ desc = "Show the Best Display always while on the garden.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 6)
+ public boolean cropMilestoneBestAlwaysOn = false;
+
+ @Expose
@ConfigOption(name = "Display Position", desc = "")
@ConfigEditorButton(runnableId = "cropMilestoneNext", buttonText = "Edit")
@ConfigAccordionId(id = 6)