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 ThermalGenertaorOutput;
|
||||||
public static int CentrifugeInputTick;
|
public static int CentrifugeInputTick;
|
||||||
public static int DragoneggsiphonerOutput;
|
public static int DragoneggsiphonerOutput;
|
||||||
|
public static int heatGeneratorOutput;
|
||||||
// Charge
|
// Charge
|
||||||
public static int AdvancedDrillCharge;
|
public static int AdvancedDrillCharge;
|
||||||
public static int LapotronPackCharge;
|
public static int LapotronPackCharge;
|
||||||
|
@ -468,6 +469,15 @@ public class ConfigTechReborn {
|
||||||
StatCollector
|
StatCollector
|
||||||
.translateToLocal("config.techreborn.centrifugePowerUsage.tooltip"))
|
.translateToLocal("config.techreborn.centrifugePowerUsage.tooltip"))
|
||||||
.getInt();
|
.getInt();
|
||||||
|
heatGeneratorOutput = config
|
||||||
|
.get(CATEGORY_POWER,
|
||||||
|
StatCollector
|
||||||
|
.translateToLocal("config.techreborn.heatGeneratorOutput"),
|
||||||
|
1,
|
||||||
|
StatCollector
|
||||||
|
.translateToLocal("config.techreborn.heatGeneratorOutput.tooltip"))
|
||||||
|
|
||||||
|
.getInt();
|
||||||
|
|
||||||
// Charge
|
// Charge
|
||||||
AdvancedDrillCharge = config
|
AdvancedDrillCharge = config
|
||||||
|
|
|
@ -22,7 +22,7 @@ public class TileHeatGenerator extends TileMachineBase implements IWrenchable, I
|
||||||
|
|
||||||
public TileHeatGenerator()
|
public TileHeatGenerator()
|
||||||
{
|
{
|
||||||
energy = new BasicSource(this, 1000, 1);
|
energy = new BasicSource(this, 1000, ConfigTechReborn.heatGeneratorOutput);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue