Added config to heatgen
This commit is contained in:
parent
0011125a2a
commit
1db1c02077
2 changed files with 11 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue