Skip to content

Commit

Permalink
Fixed a bug in cyclic:filter_data #2423, #2370, #2355, and #2330.
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinwie committed Oct 21, 2024
1 parent c736392 commit 8e56068
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 8e56068

Please sign in to comment.