Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,8 @@ public MEPatternBufferPartMachine(BlockEntityCreationInfo info) {
this.shareInventory = attachTrait(new NotifiableItemStackHandler(9, IO.IN, IO.NONE));
this.shareTank = attachTrait(new NotifiableFluidTank(9, 8 * FluidType.BUCKET_VOLUME, IO.IN, IO.NONE));
this.internalRecipeHandler = new InternalSlotRecipeHandler(this, internalInventory);
// Inventory isn't used; prevent items being inserted (e.g., via hoppers) and becoming inaccessible.
this.getInventory().setFilter((ignored) -> false);
}

@Override
Expand Down
Loading