All power blocks now produce power as stated in v63 tool tips

This commit is contained in:
Timmeey86
2018-12-01 13:41:14 +01:00
parent 149f7a1d9d
commit b4aba3d263
2 changed files with 7 additions and 11 deletions

View File

@@ -20,7 +20,7 @@ public class PowerBlocks extends BlockList implements ContentList{
thermalGenerator = new LiquidHeatGenerator("thermal-generator"){{
maxLiquidGenerate = 2f;
powerProduction = 4f;
powerProduction = 2f;
generateEffect = BlockFx.redgeneratespark;
size = 2;
}};
@@ -42,14 +42,14 @@ public class PowerBlocks extends BlockList implements ContentList{
powerProduction = 0.0045f;
}};
largeSolarPanel = new PowerGenerator("solar-panel-large"){{
largeSolarPanel = new SolarGenerator("solar-panel-large"){{
powerProduction = 0.055f;
}};
thoriumReactor = new NuclearReactor("thorium-reactor"){{
size = 3;
health = 700;
powerMultiplier = 1.1f;
powerProduction = 1.1f;
}};
fusionReactor = new FusionReactor("fusion-reactor"){{