Skip to content
This repository has been archived by the owner on May 25, 2024. It is now read-only.

Commit

Permalink
Buff CoAL recipe times to 48x base instead of 64x (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
greesyB authored Jul 17, 2023
1 parent 328376f commit e2f0693
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ private static void generateAssemblerRecipes() {
compactItems(fixedInputs, info.getRight()).toArray(new ItemStack[0]),
fixedFluids.toArray(new FluidStack[0]),
info.getLeft().get(OUTPUT_MULTIPLIER),
recipe.mDuration * OUTPUT_MULTIPLIER,
recipe.mDuration * INPUT_MULTIPLIER,
energy,
info.getRight());
}
Expand Down Expand Up @@ -144,7 +144,7 @@ private static void generateAsslineRecipes() {
fixedInputs.toArray(new ItemStack[0]),
fixedFluids.toArray(new FluidStack[0]),
info.getLeft().get(OUTPUT_MULTIPLIER), // The component output
recipe.mDuration * OUTPUT_MULTIPLIER, // Takes as long as this many
recipe.mDuration * INPUT_MULTIPLIER, // Takes as long as this many
recipe.mEUt,
info.getRight()); // Casing tier
}
Expand Down

0 comments on commit e2f0693

Please sign in to comment.