Nerf the fusion reactor a little.

This commit is contained in:
modmuss50 2018-04-25 16:17:38 +01:00
parent 9d0a2a0ddc
commit dc32c9505d
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ public class FusionReactorRecipes extends RecipeMethods {
ItemCells.getCellByName("heliumplasma"), 40000000, 32768, 1024));
FusionReactorRecipeHelper.registerRecipe(
new FusionReactorRecipe(ItemCells.getCellByName("tritium"), ItemCells.getCellByName("deuterium"),
ItemCells.getCellByName("helium3"), 60000000, 32768, 2048));
ItemCells.getCellByName("helium3"), 60000000, 16384, 2048));
FusionReactorRecipeHelper.registerRecipe(
new FusionReactorRecipe(ItemCells.getCellByName("wolframium"), ItemCells.getCellByName("Berylium"),
ItemDusts.getDustByName("platinum"), 80000000, -2048, 1024));

View file

@ -271,7 +271,7 @@ public class TileFusionControlComputer extends TilePowerAcceptor
@Override
public double getPowerMultiplier() {
return Math.round(Math.pow(size - 5, 2));
return size -5;
}
@Override