From e2813fd6cbe043ad61aeb31e532413dd0aaab1bd Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sat, 29 Jul 2023 16:53:00 +0200 Subject: sacks no longer get blocked from moving in storage --- .../hannibal2/skyhanni/features/inventory/HideNotClickableItems.kt | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/main/java') 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!" -- cgit