Skip to content

Commit

Permalink
buff electrolysis durations heavily
Browse files Browse the repository at this point in the history
  • Loading branch information
serenibyss committed Jul 8, 2021
1 parent 2f8d00f commit 148fc30
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ private static void processDecomposition(OrePrefix decomposePrefix, IMaterial<?>
}

//generate builder
RecipeBuilder builder;
RecipeBuilder<?> builder;
if (material.hasFlag(Material.MatFlags.DECOMPOSITION_BY_ELECTROLYZING)) {
builder = RecipeMaps.ELECTROLYZER_RECIPES.recipeBuilder()
.duration((int) material.getAverageProtons() * totalInputAmount * 8)
.duration((int) material.getAverageProtons() * totalInputAmount * 2)
.EUt(getElectrolyzingVoltage(material.getMaterialComponents().stream()
.map(s -> s.material).collect(Collectors.toList())));
} else {
Expand Down

0 comments on commit 148fc30

Please sign in to comment.