Skip to content

Commit

Permalink
Fix #processFilter.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuuta0217 committed Jun 19, 2024
1 parent ad45c53 commit ac28527
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ private static boolean processFilter(IMixinHopperBlockEntity hopper, ItemStack t
} else {
return filterMode != FilterType.WHITELIST;
}
} else return !hopper.isIncomingFilterEnabled() && !hopper.isOutgoingFilterEnabled();
} else return true; // If filter is disabled, return true (Allow, pass)
}

/**
Expand Down

0 comments on commit ac28527

Please sign in to comment.