mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-02-13 12:16:53 +07:00
More unlocks?
This commit is contained in:
parent
a655e18b87
commit
0f43690aaf
@ -107,6 +107,7 @@ public class Separator extends Block{
|
|||||||
entity.cons.trigger();
|
entity.cons.trigger();
|
||||||
|
|
||||||
if(item != null && entity.items.get(item) < itemCapacity){
|
if(item != null && entity.items.get(item) < itemCapacity){
|
||||||
|
useContent(tile, item);
|
||||||
offloadNear(tile, item);
|
offloadNear(tile, item);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -111,6 +111,7 @@ public class SolidPump extends Pump{
|
|||||||
tile.entity.liquids.add(result, maxPump);
|
tile.entity.liquids.add(result, maxPump);
|
||||||
entity.lastPump = maxPump;
|
entity.lastPump = maxPump;
|
||||||
entity.warmup = Mathf.lerpDelta(entity.warmup, 1f, 0.02f);
|
entity.warmup = Mathf.lerpDelta(entity.warmup, 1f, 0.02f);
|
||||||
|
if(tile.entity.timer.get(timerContentCheck, 10)) useContent(tile, result);
|
||||||
if(Mathf.chance(entity.delta() * updateEffectChance))
|
if(Mathf.chance(entity.delta() * updateEffectChance))
|
||||||
Effects.effect(updateEffect, entity.x + Mathf.range(size * 2f), entity.y + Mathf.range(size * 2f));
|
Effects.effect(updateEffect, entity.x + Mathf.range(size * 2f), entity.y + Mathf.range(size * 2f));
|
||||||
}else{
|
}else{
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
org.gradle.daemon=true
|
org.gradle.daemon=true
|
||||||
org.gradle.jvmargs=-Xms256m -Xmx1024m
|
org.gradle.jvmargs=-Xms256m -Xmx1024m
|
||||||
archash=d20c0312e740a9845a358fc4571926ad784c0bbc
|
archash=415c435dc59e9248fdef8362582220d18f9f8e17
|
||||||
|
Loading…
Reference in New Issue
Block a user