diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-21 12:48:55 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-21 12:48:55 +0100 |
commit | c9757841e10bb214e8fd7edd0f07e5c5ef88fe4a (patch) | |
tree | 0b42edf001d12972cf9152891d7f1f46865539de /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | fac81a0d521cbaa6b3feadf31d049fc236fbb039 (diff) | |
download | skyhanni-c9757841e10bb214e8fd7edd0f07e5c5ef88fe4a.tar.gz skyhanni-c9757841e10bb214e8fd7edd0f07e5c5ef88fe4a.tar.bz2 skyhanni-c9757841e10bb214e8fd7edd0f07e5c5ef88fe4a.zip |
Highlight underbid own lowest BIN auctions that are outbid.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java index 01d9a29fe..1478df3ad 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java @@ -163,6 +163,13 @@ public class InventoryConfig { public boolean highlightAuctions = true; @Expose + @ConfigOption(name = "Highlight Underbid Auctions", + desc = "Highlight underbid own lowest BIN auctions that are outbid.") + @ConfigEditorBoolean + @FeatureToggle + public boolean highlightAuctionsUnderbid = false; + + @Expose @ConfigOption(name = "Copy Underbid Price", desc = "Copies the price of an item in the \"Create BIN Auction\" minus 1 coin into the clipboard for faster under-bidding.") @ConfigEditorBoolean |