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

View file

@ -42,7 +42,7 @@ public class ChargeHud
if (mc.inGameHasFocus || (mc.currentScreen != null && mc.gameSettings.showDebugInfo)) if (mc.inGameHasFocus || (mc.currentScreen != null && mc.gameSettings.showDebugInfo))
{ {
if (ConfigTechReborn.ShowChargeHud) if (ConfigTechReborn.ShowChargeHud)
drawChargeHud(event.resolution); drawChargeHud(event.resolution);
} }
} }

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 class TileAesu extends EUStorageTile implements IWrenchable {
public static final int MAX_OUTPUT = 8192; public static final int MAX_OUTPUT = ConfigTechReborn.aesuMaxOutput;
public static final int MAX_STORAGE = 1000000000; //One billion! public static final int MAX_STORAGE = ConfigTechReborn.aesuMaxStorage;
public Inventory inventory = new Inventory(2, "TileAesu", 64); public Inventory inventory = new Inventory(2, "TileAesu", 64);
private int OUTPUT = 64; //The current output private int OUTPUT = 64; //The current output
private double euLastTick = 0; private double euLastTick = 0;