diff --git a/core/src/mindustry/world/blocks/production/GenericCrafter.java b/core/src/mindustry/world/blocks/production/GenericCrafter.java index ee0e9a3c30..3dd94822be 100644 --- a/core/src/mindustry/world/blocks/production/GenericCrafter.java +++ b/core/src/mindustry/world/blocks/production/GenericCrafter.java @@ -134,8 +134,6 @@ public class GenericCrafter extends Block{ return outputItem != null; } - - @Override public boolean shouldConsume(Tile tile){ if(outputItem != null && tile.entity.items.get(outputItem.item) >= itemCapacity){ diff --git a/core/src/mindustry/world/modules/LiquidModule.java b/core/src/mindustry/world/modules/LiquidModule.java index 19ad109341..eaaa22a07f 100644 --- a/core/src/mindustry/world/modules/LiquidModule.java +++ b/core/src/mindustry/world/modules/LiquidModule.java @@ -102,6 +102,7 @@ public class LiquidModule extends BlockModule{ @Override public void read(DataInput stream) throws IOException{ Arrays.fill(liquids, 0); + total = 0f; byte count = stream.readByte(); for(int j = 0; j < count; j++){