aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorCalMWolfs <94038482+CalMWolfs@users.noreply.github.com>2023-06-19 19:48:18 +1000
committerGitHub <noreply@github.com>2023-06-19 11:48:18 +0200
commit64e59b4a917f6d71868f3722f65700a592404388 (patch)
treebbd256ba0f4bf9591cdff0e1bde416d98c7f4f9c /src/main/java/at/hannibal2/skyhanni/config
parentb14d79c5a5e7d245398b7d697cef305bbbed2ad7 (diff)
downloadskyhanni-64e59b4a917f6d71868f3722f65700a592404388.tar.gz
skyhanni-64e59b4a917f6d71868f3722f65700a592404388.tar.bz2
skyhanni-64e59b4a917f6d71868f3722f65700a592404388.zip
Merge pull request #241
* BazaarApi searching * Highlight Item * Resetting on purchase and only highlights correct one * adding default value
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Bazaar.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Bazaar.java b/src/main/java/at/hannibal2/skyhanni/config/features/Bazaar.java
index bfc1fdd90..f357e76fd 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Bazaar.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Bazaar.java
@@ -8,6 +8,11 @@ import io.github.moulberry.moulconfig.annotations.ConfigOption;
public class Bazaar {
@Expose
+ @ConfigOption(name = "Purchase Helper", desc = "Highlights the item you are trying to buy in the Bazaar.")
+ @ConfigEditorBoolean
+ public boolean purchaseHelper = true;
+
+ @Expose
@ConfigOption(name = "Order Helper", desc = "Show visual hints inside the Bazaar Manage Order view when items are ready to pickup or outbid.")
@ConfigEditorBoolean
public boolean orderHelper = false;