From 88bac26625b06d869608e387279d787bfeb60a0c Mon Sep 17 00:00:00 2001 From: MoePus <547007249@qq.com> Date: Tue, 1 Oct 2024 20:57:24 +0900 Subject: [PATCH] The items processed by the fan should be able to be processed by the fan again after other processing. --- .../belt/behaviour/TransportedItemStackHandlerBehaviour.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/com/simibubi/create/content/kinetics/belt/behaviour/TransportedItemStackHandlerBehaviour.java b/src/main/java/com/simibubi/create/content/kinetics/belt/behaviour/TransportedItemStackHandlerBehaviour.java index a492180a9..8ba1afb4f 100644 --- a/src/main/java/com/simibubi/create/content/kinetics/belt/behaviour/TransportedItemStackHandlerBehaviour.java +++ b/src/main/java/com/simibubi/create/content/kinetics/belt/behaviour/TransportedItemStackHandlerBehaviour.java @@ -47,6 +47,9 @@ public class TransportedItemStackHandlerBehaviour extends BlockEntityBehaviour { public static TransportedResult convertToAndLeaveHeld(List outputs, TransportedItemStack heldOutput) { + for (TransportedItemStack output : outputs) { + output.processedBy = null; + } return new TransportedResult(outputs, heldOutput); }