diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-29 16:53:00 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-29 16:53:00 +0200 |
commit | e2813fd6cbe043ad61aeb31e532413dd0aaab1bd (patch) | |
tree | a428e85c1ddfd00f0ac092ff644ef7b0d856ee03 /src/main/java | |
parent | 921ee1faa468d69fb70d2698fb210fc3eb61170d (diff) | |
download | skyhanni-e2813fd6cbe043ad61aeb31e532413dd0aaab1bd.tar.gz skyhanni-e2813fd6cbe043ad61aeb31e532413dd0aaab1bd.tar.bz2 skyhanni-e2813fd6cbe043ad61aeb31e532413dd0aaab1bd.zip |
sacks no longer get blocked from moving in storage
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/inventory/HideNotClickableItems.kt | 5 |
1 files changed, 0 insertions, 5 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 9b93e5293..2faac03bf 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/inventory/HideNotClickableItems.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/inventory/HideNotClickableItems.kt @@ -409,11 +409,6 @@ class HideNotClickableItems { val name = stack.cleanName() - if (ItemUtils.isSack(name)) { - hideReason = "Sacks cannot be put into the storage!" - return true - } - val result = hideInStorageFilter.match(name) if (result) hideReason = "Bags cannot be put into the storage!" |