Fixed #1526
This commit is contained in:
@@ -39,7 +39,6 @@ public class LiquidExtendingBridge extends ExtendingItemBridge{
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(entity.uptime >= 0.5f){
|
if(entity.uptime >= 0.5f){
|
||||||
|
|
||||||
if(tryMoveLiquid(tile, other, false, entity.liquids.current()) > 0.1f){
|
if(tryMoveLiquid(tile, other, false, entity.liquids.current()) > 0.1f){
|
||||||
entity.cycleSpeed = Mathf.lerpDelta(entity.cycleSpeed, 4f, 0.05f);
|
entity.cycleSpeed = Mathf.lerpDelta(entity.cycleSpeed, 4f, 0.05f);
|
||||||
}else{
|
}else{
|
||||||
|
|||||||
@@ -139,7 +139,7 @@ public class GenericCrafter extends Block{
|
|||||||
if(outputItem != null && tile.entity.items.get(outputItem.item) >= itemCapacity){
|
if(outputItem != null && tile.entity.items.get(outputItem.item) >= itemCapacity){
|
||||||
return false;
|
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
|
@Override
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
org.gradle.daemon=true
|
org.gradle.daemon=true
|
||||||
org.gradle.jvmargs=-Xms256m -Xmx1024m
|
org.gradle.jvmargs=-Xms256m -Xmx1024m
|
||||||
archash=a57e709113a364ff718821de4c40366e17353329
|
archash=0046591e6664a02c2f6a632963240c991e9afc96
|
||||||
|
|||||||
Reference in New Issue
Block a user