diff options
author | RIONDY 'POPlol333' Adam <76914762+POPlol333@users.noreply.github.com> | 2023-05-29 15:49:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-29 15:49:00 +0200 |
commit | 707d0bfc5912699559e1359d34a22410533696ce (patch) | |
tree | bcc59f747088748ffa56d41e1d7fb42b70c87510 /src/main | |
parent | 6968f15a7190f6a97ad598cbb9e6dd1e18a594de (diff) | |
download | GT5-Unofficial-707d0bfc5912699559e1359d34a22410533696ce.tar.gz GT5-Unofficial-707d0bfc5912699559e1359d34a22410533696ce.tar.bz2 GT5-Unofficial-707d0bfc5912699559e1359d34a22410533696ce.zip |
butcher recipe time (#2033)
* butcher recipe time
* spotlessApply (#2034)
Co-authored-by: GitHub GTNH Actions <>
---------
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/gregtech/loaders/postload/chains/GT_NaniteChain.java | 2 | ||||
-rw-r--r-- | src/main/java/gregtech/loaders/postload/chains/GT_PCBFactoryRecipes.java | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/main/java/gregtech/loaders/postload/chains/GT_NaniteChain.java b/src/main/java/gregtech/loaders/postload/chains/GT_NaniteChain.java index 0dd3bf1705..61d0c9dea6 100644 --- a/src/main/java/gregtech/loaders/postload/chains/GT_NaniteChain.java +++ b/src/main/java/gregtech/loaders/postload/chains/GT_NaniteChain.java @@ -55,7 +55,7 @@ public class GT_NaniteChain { .noFluidOutputs() .itemOutputs(ItemList.NanoForge.get(1)) .eut(TierEU.RECIPE_ZPM) - .duration(40 * MINUTES) + .duration(5 * MINUTES) .addTo(AssemblyLine); GT_Values.RA.stdBuilder() diff --git a/src/main/java/gregtech/loaders/postload/chains/GT_PCBFactoryRecipes.java b/src/main/java/gregtech/loaders/postload/chains/GT_PCBFactoryRecipes.java index 6cd402b050..658531ce24 100644 --- a/src/main/java/gregtech/loaders/postload/chains/GT_PCBFactoryRecipes.java +++ b/src/main/java/gregtech/loaders/postload/chains/GT_PCBFactoryRecipes.java @@ -3,7 +3,6 @@ package gregtech.loaders.postload.chains; import static gregtech.api.enums.Mods.BartWorks; import static gregtech.api.enums.Mods.GTPlusPlus; import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sAssemblerRecipes; -import static gregtech.api.util.GT_RecipeBuilder.HOURS; import static gregtech.api.util.GT_RecipeBuilder.MINUTES; import static gregtech.api.util.GT_RecipeBuilder.SECONDS; import static gregtech.api.util.GT_RecipeConstants.AssemblyLine; @@ -54,7 +53,7 @@ public class GT_PCBFactoryRecipes { .noFluidOutputs() .itemOutputs(ItemList.PCBFactory.get(1)) .eut(TierEU.RECIPE_UV) - .duration(1 * HOURS + 40 * MINUTES) + .duration(5 * MINUTES) .addTo(AssemblyLine); if (GTPlusPlus.isModLoaded()) { |