diff options
author | Phoebe <77941535+catgirlseraid@users.noreply.github.com> | 2024-05-29 19:17:47 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-29 09:17:47 +0200 |
commit | c38ebf82a6f82ef66250710bb9b7513bc2ae732e (patch) | |
tree | 8b0b2d79fe62e7c9cac91d024af5a556aee1ebfa /src/main/java/at/hannibal2/skyhanni/config | |
parent | 84b36cb1c0b89f42cc0613cfdbba275a78528fb2 (diff) | |
download | skyhanni-c38ebf82a6f82ef66250710bb9b7513bc2ae732e.tar.gz skyhanni-c38ebf82a6f82ef66250710bb9b7513bc2ae732e.tar.bz2 skyhanni-c38ebf82a6f82ef66250710bb9b7513bc2ae732e.zip |
Feature: Auction outbid warning (#1818)
Co-authored-by: SeRaid <77941535+SeRaid743@users.noreply.github.com>
Co-authored-by: Cal <cwolfson58@gmail.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/inventory/AuctionHouseConfig.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/AuctionHouseConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/AuctionHouseConfig.java index 21108095b..65a21438a 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/AuctionHouseConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/AuctionHouseConfig.java @@ -55,4 +55,10 @@ public class AuctionHouseConfig { @ConfigEditorBoolean @FeatureToggle public boolean openPriceWebsite = false; + + @Expose + @ConfigOption(name = "Outbid alert", desc = "Sends a warning when you're outbid on an auction.") + @ConfigEditorBoolean + @FeatureToggle + public boolean auctionOutbid = false; } |