aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDakota Jones <73182109+greesyB@users.noreply.github.com>2023-07-17 01:29:31 -0700
committerGitHub <noreply@github.com>2023-07-17 10:29:31 +0200
commite2f0693d6b9b6a8e6acb41ca1ecd39d2a626ae1c (patch)
tree25d7148c2a57cec5ab65c027adfc1f85b0ec7ad0
parent328376ff618b14aac4ba57d790066129c8ad95e8 (diff)
downloadGT5-Unofficial-e2f0693d6b9b6a8e6acb41ca1ecd39d2a626ae1c.tar.gz
GT5-Unofficial-e2f0693d6b9b6a8e6acb41ca1ecd39d2a626ae1c.tar.bz2
GT5-Unofficial-e2f0693d6b9b6a8e6acb41ca1ecd39d2a626ae1c.zip
Buff CoAL recipe times to 48x base instead of 64x (#177)
-rw-r--r--src/main/java/goodgenerator/loader/ComponentAssemblyLineRecipeLoader.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/goodgenerator/loader/ComponentAssemblyLineRecipeLoader.java b/src/main/java/goodgenerator/loader/ComponentAssemblyLineRecipeLoader.java
index 6381632a5f..9e64f2d13c 100644
--- a/src/main/java/goodgenerator/loader/ComponentAssemblyLineRecipeLoader.java
+++ b/src/main/java/goodgenerator/loader/ComponentAssemblyLineRecipeLoader.java
@@ -84,7 +84,7 @@ public class ComponentAssemblyLineRecipeLoader {
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());
}
@@ -144,7 +144,7 @@ public class ComponentAssemblyLineRecipeLoader {
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
}