aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech
diff options
context:
space:
mode:
authorchochem <40274384+chochem@users.noreply.github.com>2023-10-15 12:30:39 +0100
committerGitHub <noreply@github.com>2023-10-15 12:30:39 +0100
commit7a885d78f2d10ee1c7c00ac865bfa6abb0c71500 (patch)
treefc2c90b1898de8aa79f321761ba64d7279413c31 /src/main/java/gregtech
parentdb6df3bad438c98ad104ad184f795358a5d01cfb (diff)
downloadGT5-Unofficial-7a885d78f2d10ee1c7c00ac865bfa6abb0c71500.tar.gz
GT5-Unofficial-7a885d78f2d10ee1c7c00ac865bfa6abb0c71500.tar.bz2
GT5-Unofficial-7a885d78f2d10ee1c7c00ac865bfa6abb0c71500.zip
fix scotch (#2332)
Diffstat (limited to 'src/main/java/gregtech')
-rw-r--r--src/main/java/gregtech/loaders/postload/recipes/DistilleryRecipes.java8
-rw-r--r--src/main/java/gregtech/loaders/postload/recipes/FermenterRecipes.java7
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)