Reactor balancing / Fixed generators / Fixed pump crash / Travis update

This commit is contained in:
Anuken
2018-07-12 10:20:38 -04:00
parent 6375862a71
commit f41e426b69
16 changed files with 71 additions and 30 deletions

View File

@@ -41,8 +41,8 @@ public class Liquids implements ContentList {
cryofluid = new Liquid("cryofluid", Color.SKY) {
{
heatCapacity = 0.75f;
temperature = 0.4f;
heatCapacity = 0.9f;
temperature = 0.25f;
tier = 1;
effect = StatusEffects.freezing;
}

View File

@@ -121,7 +121,7 @@ public class CraftingBlocks extends BlockList implements ContentList {
consumes.power(0.1f);
consumes.item(Items.titanium);
consumes.liquid(Liquids.water, 0.2f);
consumes.liquid(Liquids.water, 0.3f);
}};
blastMixer = new GenericCrafter("blast-mixer") {{

View File

@@ -22,6 +22,7 @@ public class LiquidBlocks extends BlockList implements ContentList{
pumpAmount = 0.25f;
consumes.power(0.015f);
liquidCapacity = 30f;
hasPower = true;
size = 2;
tier = 1;
}};