aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
authoralexia <me@alexia.lol>2024-01-23 20:51:06 +0100
committerGitHub <noreply@github.com>2024-01-23 20:51:06 +0100
commit56739f84bf8cdbfe57a18577c1ca0a63e0834176 (patch)
treee3fb2fbab776f6dd6397faaf164ae11068b2debd /src/main/java
parentf09ce2fcda55b419a5c8960345e1db458c593ca6 (diff)
downloadskyhanni-56739f84bf8cdbfe57a18577c1ca0a63e0834176.tar.gz
skyhanni-56739f84bf8cdbfe57a18577c1ca0a63e0834176.tar.bz2
skyhanni-56739f84bf8cdbfe57a18577c1ca0a63e0834176.zip
Allow putting Water Bottles into Potion Bag (#949)
Allow putting Water Bottles into Potion Bag. #949
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/inventory/HideNotClickableItems.kt2
1 files changed, 1 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 37ca20f33..ac9c402e7 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/inventory/HideNotClickableItems.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/inventory/HideNotClickableItems.kt
@@ -301,7 +301,7 @@ class HideNotClickableItems {
}
reverseColor = true
- if (stack.cleanName().endsWith(" Potion")) return false
+ if (stack.cleanName().endsWith(" Potion") || stack.cleanName() == "Water Bottle") return false
hideReason = "This item is not a potion!"
return true