mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-02-06 17:08:56 +07:00
Fixed #4104
This commit is contained in:
parent
2523088b4c
commit
90372171b2
@ -98,7 +98,7 @@ public class ItemLiquidGenerator extends PowerGenerator{
|
|||||||
//Power amount is delta'd by PowerGraph class already.
|
//Power amount is delta'd by PowerGraph class already.
|
||||||
float calculationDelta = delta();
|
float calculationDelta = delta();
|
||||||
|
|
||||||
heat = Mathf.lerpDelta(heat, generateTime >= 0.001f ? 1f : 0f, 0.05f);
|
heat = Mathf.lerpDelta(heat, generateTime >= 0.001f && enabled ? 1f : 0f, 0.05f);
|
||||||
|
|
||||||
if(!consValid()){
|
if(!consValid()){
|
||||||
productionEfficiency = 0.0f;
|
productionEfficiency = 0.0f;
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
org.gradle.daemon=true
|
org.gradle.daemon=true
|
||||||
org.gradle.jvmargs=-Xms256m -Xmx1024m
|
org.gradle.jvmargs=-Xms256m -Xmx1024m
|
||||||
archash=2b5815edf64d5431dee6ad4ac8ba45f069f66350
|
archash=172b5df0a7258f7195d4b1f4c5b5724108f13ab0
|
||||||
|
Loading…
Reference in New Issue
Block a user