Added configs to Aesu

This commit is contained in:
gigabit101 2015-07-21 17:53:20 +01:00
parent f96e55737f
commit 0880ffac72
3 changed files with 537 additions and 990 deletions

File diff suppressed because it is too large Load diff

View file

@ -14,8 +14,8 @@ import techreborn.util.LogHelper;
public class TileAesu extends EUStorageTile implements IWrenchable {
public static final int MAX_OUTPUT = 8192;
public static final int MAX_STORAGE = 1000000000; //One billion!
public static final int MAX_OUTPUT = ConfigTechReborn.aesuMaxOutput;
public static final int MAX_STORAGE = ConfigTechReborn.aesuMaxStorage;
public Inventory inventory = new Inventory(2, "TileAesu", 64);
private int OUTPUT = 64; //The current output
private double euLastTick = 0;