diff options
author | miozune <miozune@gmail.com> | 2024-03-15 23:34:01 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-15 23:34:01 +0900 |
commit | c1a551423659e2686ce1ff2eb9933db75c2b2c49 (patch) | |
tree | 7a1ccc8e11b9aae8a56ee1761944edc6914bfe0c /src/main/java/gregtech/loaders/postload/recipes | |
parent | 4a632ffcdfe4157111a5ac7004151392b06d2c8c (diff) | |
download | GT5-Unofficial-c1a551423659e2686ce1ff2eb9933db75c2b2c49.tar.gz GT5-Unofficial-c1a551423659e2686ce1ff2eb9933db75c2b2c49.tar.bz2 GT5-Unofficial-c1a551423659e2686ce1ff2eb9933db75c2b2c49.zip |
Don't hide brewery recipes & unhide more drinks (#2540)
Diffstat (limited to 'src/main/java/gregtech/loaders/postload/recipes')
-rw-r--r-- | src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java b/src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java index e5972f4e77..7538b50c6c 100644 --- a/src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java +++ b/src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java @@ -243,7 +243,6 @@ public class BreweryRecipes implements Runnable { .fluidOutputs(getFluidStack("potion.poison.strong", 750)) .duration(6 * SECONDS + 8 * TICKS) .eut(4) - .hidden() .addTo(brewingRecipes); GT_Values.RA.stdBuilder() @@ -276,7 +275,6 @@ public class BreweryRecipes implements Runnable { .fluidOutputs(getFluidStack("potion.goldenapplejuice", 750)) .duration(6 * SECONDS + 8 * TICKS) .eut(4) - .hidden() .addTo(brewingRecipes); GT_Values.RA.stdBuilder() @@ -285,7 +283,6 @@ public class BreweryRecipes implements Runnable { .fluidOutputs(getFluidStack("potion.idunsapplejuice", 750)) .duration(6 * SECONDS + 8 * TICKS) .eut(4) - .hidden() .addTo(brewingRecipes); GT_Values.RA.stdBuilder() @@ -331,7 +328,6 @@ public class BreweryRecipes implements Runnable { .fluidOutputs(getFluidStack("potion.diabolosauce", 750)) .duration(6 * SECONDS + 8 * TICKS) .eut(4) - .hidden() .addTo(brewingRecipes); GT_Values.RA.stdBuilder() @@ -340,7 +336,6 @@ public class BreweryRecipes implements Runnable { .fluidOutputs(getFluidStack("potion.diablosauce", 750)) .duration(6 * SECONDS + 8 * TICKS) .eut(4) - .hidden() .addTo(brewingRecipes); GT_Values.RA.stdBuilder() @@ -381,7 +376,6 @@ public class BreweryRecipes implements Runnable { .fluidOutputs(getFluidStack("potion.sweettea", 750)) .duration(6 * SECONDS + 8 * TICKS) .eut(4) - .hidden() .addTo(brewingRecipes); GT_Values.RA.stdBuilder() @@ -398,7 +392,6 @@ public class BreweryRecipes implements Runnable { .fluidOutputs(getFluidStack("potion.laitaucafe", 750)) .duration(6 * SECONDS + 8 * TICKS) .eut(4) - .hidden() .addTo(brewingRecipes); GT_Values.RA.stdBuilder() @@ -415,7 +408,6 @@ public class BreweryRecipes implements Runnable { .fluidOutputs(getFluidStack("potion.darkcafeaulait", 750)) .duration(6 * SECONDS + 8 * TICKS) .eut(4) - .hidden() .addTo(brewingRecipes); GT_Values.RA.stdBuilder() @@ -440,7 +432,6 @@ public class BreweryRecipes implements Runnable { .fluidOutputs(getFluidStack("potion.cavejohnsonsgrenadejuice", 750)) .duration(6 * SECONDS + 8 * TICKS) .eut(4) - .hidden() .addTo(brewingRecipes); GT_Values.RA.stdBuilder() @@ -449,7 +440,6 @@ public class BreweryRecipes implements Runnable { .fluidOutputs(getFluidStack("potion.purpledrink", 750)) .duration(6 * SECONDS + 8 * TICKS) .eut(4) - .hidden() .addTo(brewingRecipes); GT_Values.RA.stdBuilder() |