From 2b5e3ec4aafcbff0614a5136de0e5c8d47c148a8 Mon Sep 17 00:00:00 2001 From: Anuken Date: Sun, 7 Jul 2024 11:18:13 -0400 Subject: [PATCH] Fixed #9974 --- .../src/mindustry/world/blocks/distribution/StackConveyor.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/mindustry/world/blocks/distribution/StackConveyor.java b/core/src/mindustry/world/blocks/distribution/StackConveyor.java index 357c3f8705..334261712e 100644 --- a/core/src/mindustry/world/blocks/distribution/StackConveyor.java +++ b/core/src/mindustry/world/blocks/distribution/StackConveyor.java @@ -259,7 +259,8 @@ public class StackConveyor extends Block implements Autotiler{ @Override public void updateTile(){ - float eff = enabled ? (efficiency + baseEfficiency) : 0f; + //the item still needs to be "reeled" in when disabled + float eff = enabled ? (efficiency + baseEfficiency) : 1f; //reel in crater if(cooldown > 0f) cooldown = Mathf.clamp(cooldown - speed * eff * delta(), 0f, recharge);