Thermal Generator now outputs 32 eu/tick

This commit is contained in:
Modmuss50 2019-01-20 21:14:15 +00:00 committed by GitHub
parent 0bd22f1a55
commit bc1e2ca7eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,7 +45,7 @@ public class TileThermalGenerator extends TileBaseFluidGenerator implements ICon
@ConfigRegistry(config = "generators", category = "thermal_generator", key = "ThermalGeneratorTankCapacity", comment = "Thermal Generator Tank Capacity")
public static int tankCapacity = 10_000;
@ConfigRegistry(config = "generators", category = "thermal_generator", key = "ThermalGeneratorEnergyPerTick", comment = "Thermal Generator Energy Per Tick (Value in EU)")
public static int energyPerTick = 10;
public static int energyPerTick = 32;
public TileThermalGenerator() {
super(EFluidGenerator.THERMAL, "TileThermalGenerator", tankCapacity, energyPerTick);