Skip to content

Commit

Permalink
Merge pull request #2438 from gavinwie/trunk/1.20.1
Browse files Browse the repository at this point in the history
Fixed Filter Data Card Issues #2423, #2370, #2355, and #2330.
  • Loading branch information
Lothrazar authored Oct 22, 2024
2 parents c736392 + 8e56068 commit 9856274
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public static boolean filterAllowsExtract(ItemStack filterStack, ItemStack itemT
if (!filterPtr.isEmpty()) {
isEmpty = false; //at least one thing is in the filter
//does it match
if (ItemStackUtil.matches(itemTarget, filterPtr)) {
if (ItemStackUtil.matches(itemTarget.getItem().getDefaultInstance(), filterPtr)) {
isMatchingList = true;
break;
}
Expand Down

0 comments on commit 9856274

Please sign in to comment.