Pull back power output on Thermal gen as I made it a bit too much last commit. Now 16

This commit is contained in:
modmuss50 2019-01-24 21:26:56 +00:00
parent bc1e2ca7eb
commit 5a9349ced4

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") @ConfigRegistry(config = "generators", category = "thermal_generator", key = "ThermalGeneratorTankCapacity", comment = "Thermal Generator Tank Capacity")
public static int tankCapacity = 10_000; public static int tankCapacity = 10_000;
@ConfigRegistry(config = "generators", category = "thermal_generator", key = "ThermalGeneratorEnergyPerTick", comment = "Thermal Generator Energy Per Tick (Value in EU)") @ConfigRegistry(config = "generators", category = "thermal_generator", key = "ThermalGeneratorEnergyPerTick", comment = "Thermal Generator Energy Per Tick (Value in EU)")
public static int energyPerTick = 32; public static int energyPerTick = 16;
public TileThermalGenerator() { public TileThermalGenerator() {
super(EFluidGenerator.THERMAL, "TileThermalGenerator", tankCapacity, energyPerTick); super(EFluidGenerator.THERMAL, "TileThermalGenerator", tankCapacity, energyPerTick);