diff options
author | chochem <40274384+chochem@users.noreply.github.com> | 2023-10-15 12:30:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-15 12:30:39 +0100 |
commit | 7a885d78f2d10ee1c7c00ac865bfa6abb0c71500 (patch) | |
tree | fc2c90b1898de8aa79f321761ba64d7279413c31 /src/main | |
parent | db6df3bad438c98ad104ad184f795358a5d01cfb (diff) | |
download | GT5-Unofficial-7a885d78f2d10ee1c7c00ac865bfa6abb0c71500.tar.gz GT5-Unofficial-7a885d78f2d10ee1c7c00ac865bfa6abb0c71500.tar.bz2 GT5-Unofficial-7a885d78f2d10ee1c7c00ac865bfa6abb0c71500.zip |
fix scotch (#2332)
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/gregtech/loaders/postload/recipes/DistilleryRecipes.java | 8 | ||||
-rw-r--r-- | src/main/java/gregtech/loaders/postload/recipes/FermenterRecipes.java | 7 |
2 files changed, 8 insertions, 7 deletions
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 @@ -95,13 +95,6 @@ public class FermenterRecipes implements Runnable { .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)) .duration(1 * MINUTES + 42 * SECONDS + 8 * TICKS) |