Added configs to Aesu
This commit is contained in:
parent
f96e55737f
commit
0880ffac72
3 changed files with 537 additions and 990 deletions
|
@ -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
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue