mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-01-27 13:28:00 +01:00
The items processed by the fan should be able to be processed by the fan again after other processing.
This commit is contained in:
parent
aa15182005
commit
88bac26625
1 changed files with 3 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue