From 707d0bfc5912699559e1359d34a22410533696ce Mon Sep 17 00:00:00 2001 From: RIONDY 'POPlol333' Adam <76914762+POPlol333@users.noreply.github.com> Date: Mon, 29 May 2023 15:49:00 +0200 Subject: 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> --- src/main/java/gregtech/loaders/postload/chains/GT_NaniteChain.java | 2 +- .../java/gregtech/loaders/postload/chains/GT_PCBFactoryRecipes.java | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'src/main/java/gregtech/loaders/postload/chains') 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()) { -- cgit