diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-17 01:12:06 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-17 01:12:06 +0100 |
commit | e0fc780a007acbc4c74520c0780a83edfaf477d2 (patch) | |
tree | 22889bf046e5649a605e0350df1772af05eb9fc4 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 11600a35dce6f8c5b0031a8318a60c42522a952b (diff) | |
download | skyhanni-e0fc780a007acbc4c74520c0780a83edfaf477d2.tar.gz skyhanni-e0fc780a007acbc4c74520c0780a83edfaf477d2.tar.bz2 skyhanni-e0fc780a007acbc4c74520c0780a83edfaf477d2.zip |
More Garden features around Visitor.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Garden.java | 29 |
1 files changed, 29 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 9dec32d73..d5344900b 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -22,4 +22,33 @@ public class Garden { @ConfigEditorButton(runnableId = "skyMartCopperPrice", buttonText = "Edit") @ConfigAccordionId(id = 0) public Position skyMartCopperPricePos = new Position(44, -108, false, true); + + @Expose + @ConfigOption(name = "Visitor Helper", desc = "") + @ConfigEditorAccordion(id = 1) + public boolean visitorHelper = false; + + @Expose + @ConfigOption(name = "Visitor Display", desc = "Show all items needed for the visitors.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 1) + public boolean visitorHelperDisplay = true; + + @Expose + @ConfigOption(name = "Visitor Helper Position", desc = "") + @ConfigEditorButton(runnableId = "visitorHelper", buttonText = "Edit") + @ConfigAccordionId(id = 1) + public Position visitorHelperPos = new Position(0, 0, false, true); + + @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; + + @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; } |