Added pump

This commit is contained in:
modmuss50 2016-05-08 21:42:09 +01:00
parent 58371903d3
commit 45e31c1aef
4 changed files with 213 additions and 45 deletions

View file

@ -33,6 +33,7 @@ public class ConfigTechReborn
public static int FarmEu;
public static int AesuMaxOutput;
public static int AesuMaxStorage;
public static int pumpExtractEU;
public static int LVTransformerMaxInput;
public static int LVTransformerMaxOutput;
@ -213,6 +214,9 @@ public class ConfigTechReborn
AesuMaxStorage = config.get(CATEGORY_POWER, "AESU Max Storage", 30, "Set the max Storage for the AESU")
.getInt();
pumpExtractEU = config.get(CATEGORY_POWER, "Pump extract eu", 20, "How mutch eu should the pump use to extract the fluid")
.getInt();
//Transformers
LVTransformerMaxInput = config.get(CATEGORY_POWER, "LV Transformer Max Input", 128, "Set the max input for the LV Trasnformer")
.getInt();