Skip to content

Commit

Permalink
simple thing
Browse files Browse the repository at this point in the history
  • Loading branch information
JustAHuman-xD committed Oct 19, 2024
1 parent bb71d96 commit fff63d1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,8 @@ public static void tryInputItem(Location location, ItemStack[] input, QuantumCac
private static boolean isBlacklisted(@Nonnull ItemStack itemStack) {
return itemStack.getType() == Material.AIR
|| itemStack.getType().getMaxDurability() < 0
|| Tag.SHULKER_BOXES.isTagged(itemStack.getType());
|| Tag.SHULKER_BOXES.isTagged(itemStack.getType())
|| SlimefunItem.getByItem(itemStack) instanceof NetworkQuantumStorage;
}

@ParametersAreNonnullByDefault
Expand Down

0 comments on commit fff63d1

Please sign in to comment.