diff --git a/core/src/mindustry/world/blocks/liquid/LiquidExtendingBridge.java b/core/src/mindustry/world/blocks/liquid/LiquidExtendingBridge.java index 8b7840e9ad..ceb3e0c58f 100644 --- a/core/src/mindustry/world/blocks/liquid/LiquidExtendingBridge.java +++ b/core/src/mindustry/world/blocks/liquid/LiquidExtendingBridge.java @@ -39,7 +39,6 @@ public class LiquidExtendingBridge extends ExtendingItemBridge{ } if(entity.uptime >= 0.5f){ - if(tryMoveLiquid(tile, other, false, entity.liquids.current()) > 0.1f){ entity.cycleSpeed = Mathf.lerpDelta(entity.cycleSpeed, 4f, 0.05f); }else{ diff --git a/core/src/mindustry/world/blocks/production/GenericCrafter.java b/core/src/mindustry/world/blocks/production/GenericCrafter.java index 3dd94822be..56333434a7 100644 --- a/core/src/mindustry/world/blocks/production/GenericCrafter.java +++ b/core/src/mindustry/world/blocks/production/GenericCrafter.java @@ -139,7 +139,7 @@ public class GenericCrafter extends Block{ if(outputItem != null && tile.entity.items.get(outputItem.item) >= itemCapacity){ return false; } - return outputLiquid == null || !(tile.entity.liquids.get(outputLiquid.liquid) >= liquidCapacity); + return outputLiquid == null || !(tile.entity.liquids.get(outputLiquid.liquid) >= liquidCapacity - 0.001f); } @Override diff --git a/gradle.properties b/gradle.properties index 691ab50149..e51e86f066 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,3 @@ org.gradle.daemon=true org.gradle.jvmargs=-Xms256m -Xmx1024m -archash=a57e709113a364ff718821de4c40366e17353329 +archash=0046591e6664a02c2f6a632963240c991e9afc96