aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/inventory/HideNotClickableItems.kt3
1 files changed, 2 insertions, 1 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 e043f9d57..b67c03ad3 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/inventory/HideNotClickableItems.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/inventory/HideNotClickableItems.kt
@@ -271,7 +271,7 @@ class HideNotClickableItems {
private fun hideRiftMotesGrubber(chestName: String, stack: ItemStack): Boolean {
if (!RiftAPI.inRift()) return false
- if (chestName != "Motes Grubber") return false
+ if (chestName != "Motes Grubber" && !ShiftClickNPCSell.inInventory) return false
showGreenLine = true
@@ -477,6 +477,7 @@ class HideNotClickableItems {
}
private fun hideNpcSell(stack: ItemStack): Boolean {
+ if (RiftAPI.inRift()) return false
if (!ShiftClickNPCSell.inInventory) return false
if (VisitorAPI.inInventory) return false
showGreenLine = true