Added config to heatgen

This commit is contained in:
Gig 2015-05-10 19:08:02 +01:00
parent 0011125a2a
commit 1db1c02077
2 changed files with 11 additions and 1 deletions

View file

@ -65,6 +65,7 @@ public class ConfigTechReborn {
public static int ThermalGenertaorOutput;
public static int CentrifugeInputTick;
public static int DragoneggsiphonerOutput;
public static int heatGeneratorOutput;
// Charge
public static int AdvancedDrillCharge;
public static int LapotronPackCharge;
@ -468,6 +469,15 @@ public class ConfigTechReborn {
StatCollector
.translateToLocal("config.techreborn.centrifugePowerUsage.tooltip"))
.getInt();
heatGeneratorOutput = config
.get(CATEGORY_POWER,
StatCollector
.translateToLocal("config.techreborn.heatGeneratorOutput"),
1,
StatCollector
.translateToLocal("config.techreborn.heatGeneratorOutput.tooltip"))
.getInt();
// Charge
AdvancedDrillCharge = config

View file

@ -22,7 +22,7 @@ public class TileHeatGenerator extends TileMachineBase implements IWrenchable, I
public TileHeatGenerator()
{
energy = new BasicSource(this, 1000, 1);
energy = new BasicSource(this, 1000, ConfigTechReborn.heatGeneratorOutput);
}
@Override