diff options
author | alexia <me@alexia.lol> | 2024-01-23 20:51:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-23 20:51:06 +0100 |
commit | 56739f84bf8cdbfe57a18577c1ca0a63e0834176 (patch) | |
tree | e3fb2fbab776f6dd6397faaf164ae11068b2debd /src/main/java/at | |
parent | f09ce2fcda55b419a5c8960345e1db458c593ca6 (diff) | |
download | skyhanni-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/at')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/inventory/HideNotClickableItems.kt | 2 |
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 |