mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-01-28 22:05:01 +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,
|
public static TransportedResult convertToAndLeaveHeld(List<TransportedItemStack> outputs,
|
||||||
TransportedItemStack heldOutput) {
|
TransportedItemStack heldOutput) {
|
||||||
|
for (TransportedItemStack output : outputs) {
|
||||||
|
output.processedBy = null;
|
||||||
|
}
|
||||||
return new TransportedResult(outputs, heldOutput);
|
return new TransportedResult(outputs, heldOutput);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue