Allow charge bench to store more power

This commit is contained in:
modmuss50 2018-04-07 20:26:28 +01:00
parent 8a42e89b2c
commit d50b3daf6e
No known key found for this signature in database
GPG key ID: 773D17BE8BF49C82

View file

@ -53,7 +53,7 @@ public class TileChargeOMat extends TilePowerAcceptor
@ConfigRegistry(config = "machines", category = "charge_bench", key = "ChargeBenchMaxInput", comment = "Charge Bench Max Input (Value in EU)")
public static int maxInput = 512;
@ConfigRegistry(config = "machines", category = "charge_bench", key = "ChargeBenchMaxEnergy", comment = "Charge Bench Max Energy (Value in EU)")
public static int maxEnergy = 100000;
public static int maxEnergy = 100_000_000;
public Inventory inventory = new Inventory(6, "TileChargeOMat", 64, this);