diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-05-17 00:48:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-17 00:48:44 +0200 |
commit | c7b6a0683c5e578c3018b413c307c800b33b3943 (patch) | |
tree | 95d0d58a9f8119a63ee64564e56682fdbc90ce69 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | e65a4c1b4d8eb3a4b6870ea36ee606b08c8a4886 (diff) | |
download | skyhanni-c7b6a0683c5e578c3018b413c307c800b33b3943.tar.gz skyhanni-c7b6a0683c5e578c3018b413c307c800b33b3943.tar.bz2 skyhanni-c7b6a0683c5e578c3018b413c307c800b33b3943.zip |
Feature: cofl ah search item (#1743)
Co-authored-by: Äkwav <16632490+Ekwav@users.noreply.github.com>
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-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 3725eeb1c..21108095b 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 @@ -49,4 +49,10 @@ public class AuctionHouseConfig { ) @ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE) public int copyUnderbidKeybind = Keyboard.KEY_NONE; + + @Expose + @ConfigOption(name = "Price Website", desc = "Adds a button to the Auction House that will open the item page in §csky.coflnet.com§7.") + @ConfigEditorBoolean + @FeatureToggle + public boolean openPriceWebsite = false; } |