The items processed by the fan should be able to be processed by the fan again after other processing.

This commit is contained in:
MoePus 2024-10-01 20:57:24 +09:00
parent aa15182005
commit 88bac26625

View file

@ -47,6 +47,9 @@ public class TransportedItemStackHandlerBehaviour extends BlockEntityBehaviour {
public static TransportedResult convertToAndLeaveHeld(List<TransportedItemStack> outputs,
TransportedItemStack heldOutput) {
for (TransportedItemStack output : outputs) {
output.processedBy = null;
}
return new TransportedResult(outputs, heldOutput);
}