From 7a885d78f2d10ee1c7c00ac865bfa6abb0c71500 Mon Sep 17 00:00:00 2001 From: chochem <40274384+chochem@users.noreply.github.com> Date: Sun, 15 Oct 2023 12:30:39 +0100 Subject: fix scotch (#2332) --- .../java/gregtech/loaders/postload/recipes/DistilleryRecipes.java | 8 ++++++++ .../java/gregtech/loaders/postload/recipes/FermenterRecipes.java | 7 ------- 2 files changed, 8 insertions(+), 7 deletions(-) (limited to 'src') diff --git a/src/main/java/gregtech/loaders/postload/recipes/DistilleryRecipes.java b/src/main/java/gregtech/loaders/postload/recipes/DistilleryRecipes.java index 4ae56e9511..30a938b6b9 100644 --- a/src/main/java/gregtech/loaders/postload/recipes/DistilleryRecipes.java +++ b/src/main/java/gregtech/loaders/postload/recipes/DistilleryRecipes.java @@ -357,6 +357,14 @@ public class DistilleryRecipes implements Runnable { .eut(30) .addTo(sDistilleryRecipes); + GT_Values.RA.stdBuilder() + .itemInputs(GT_Utility.getIntegratedCircuit(1)) + .fluidInputs(getFluidStack("potion.wheatyjuice", 75)) + .fluidOutputs(getFluidStack("potion.scotch", 1)) + .duration(1 * SECONDS) + .eut(TierEU.RECIPE_MV) + .addTo(sDistilleryRecipes); + if (TinkerConstruct.isModLoaded()) { GT_Values.RA.stdBuilder() diff --git a/src/main/java/gregtech/loaders/postload/recipes/FermenterRecipes.java b/src/main/java/gregtech/loaders/postload/recipes/FermenterRecipes.java index 1e640ba840..d73dcd891a 100644 --- a/src/main/java/gregtech/loaders/postload/recipes/FermenterRecipes.java +++ b/src/main/java/gregtech/loaders/postload/recipes/FermenterRecipes.java @@ -94,13 +94,6 @@ public class FermenterRecipes implements Runnable { .eut(2) .addTo(sFermentingRecipes); - GT_Values.RA.stdBuilder() - .fluidInputs(getFluidStack("potion.wheatyjuice", 50)) - .fluidOutputs(getFluidStack("potion.scotch", 25)) - .duration(51 * SECONDS + 4 * TICKS) - .eut(2) - .addTo(sFermentingRecipes); - GT_Values.RA.stdBuilder() .fluidInputs(getFluidStack("potion.scotch", 50)) .fluidOutputs(getFluidStack("potion.glenmckenner", 10)) -- cgit