diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-01-07 01:59:53 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-01-07 01:59:53 +0100 |
commit | c0626bdc53ef5184279241a9110daa1696ac27e7 (patch) | |
tree | 7c3391bae10d2ed855b2b465bf861c0794ed01e9 /src/main/java/at/hannibal2/skyhanni | |
parent | 46a5b1c258fce1f22d06c0cee20c9d43032a988d (diff) | |
download | skyhanni-c0626bdc53ef5184279241a9110daa1696ac27e7.tar.gz skyhanni-c0626bdc53ef5184279241a9110daa1696ac27e7.tar.bz2 skyhanni-c0626bdc53ef5184279241a9110daa1696ac27e7.zip |
No longer blocking the sell of bazaar items to NPC when on ironman, stranded or bingo mode.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/inventory/HideNotClickableItems.kt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/inventory/HideNotClickableItems.kt b/src/main/java/at/hannibal2/skyhanni/features/inventory/HideNotClickableItems.kt index 78735b5f9..0202566a0 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/inventory/HideNotClickableItems.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/inventory/HideNotClickableItems.kt @@ -306,6 +306,12 @@ class HideNotClickableItems { } if (!ItemUtils.isRecombobulated(stack)) { + if (LorenzUtils.noTradeMode) { + if (BazaarApi.isBazaarItem(stack)) { + return false + } + } + if (hideNpcSellFilter.match(name)) return false val id = stack.getInternalName() |