mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-02-06 08:57:45 +07:00
Fixed #9974
This commit is contained in:
parent
4c93a7fad4
commit
2b5e3ec4aa
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user