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);