diff options
author | chochem <40274384+chochem@users.noreply.github.com> | 2023-04-10 22:42:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-10 23:42:52 +0200 |
commit | a6466b15484294207e63037ca3fbcc1aa6d6f5db (patch) | |
tree | dc3d45c4d1bce3e4f8b263e54e3216ea22d851f3 /src/main/java/gregtech/loaders/postload/recipes/FermenterRecipes.java | |
parent | c17762bef21a43f42924b989cd7b6c2280e16a99 (diff) | |
download | GT5-Unofficial-a6466b15484294207e63037ca3fbcc1aa6d6f5db.tar.gz GT5-Unofficial-a6466b15484294207e63037ca3fbcc1aa6d6f5db.tar.bz2 GT5-Unofficial-a6466b15484294207e63037ca3fbcc1aa6d6f5db.zip |
Further RA2 recipe fixes (#1870)
* there is no graphite block
* fix old RA1 remnants and nulls
* more dt null checks
* remove nonexistent potions from fermenting
* railcraft anvil fixes
* fix tainted magic fuel values
* fix railcraft creosote block
Diffstat (limited to 'src/main/java/gregtech/loaders/postload/recipes/FermenterRecipes.java')
-rw-r--r-- | src/main/java/gregtech/loaders/postload/recipes/FermenterRecipes.java | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/src/main/java/gregtech/loaders/postload/recipes/FermenterRecipes.java b/src/main/java/gregtech/loaders/postload/recipes/FermenterRecipes.java index b2c82ad602..483568dfe0 100644 --- a/src/main/java/gregtech/loaders/postload/recipes/FermenterRecipes.java +++ b/src/main/java/gregtech/loaders/postload/recipes/FermenterRecipes.java @@ -326,24 +326,6 @@ public class FermenterRecipes implements Runnable { GT_Values.RA.stdBuilder() .noItemInputs() .noItemOutputs() - .fluidInputs(getFluidStack("potion.speed.strong", 50)) - .fluidOutputs(getFluidStack("potion.slowness.strong", 10)) - .duration(1 * MINUTES + 42 * SECONDS + 8 * TICKS) - .eut(2) - .addTo(sFermentingRecipes); - - GT_Values.RA.stdBuilder() - .noItemInputs() - .noItemOutputs() - .fluidInputs(getFluidStack("potion.strength.strong", 50)) - .fluidOutputs(getFluidStack("potion.weakness.strong", 10)) - .duration(1 * MINUTES + 42 * SECONDS + 8 * TICKS) - .eut(2) - .addTo(sFermentingRecipes); - - GT_Values.RA.stdBuilder() - .noItemInputs() - .noItemOutputs() .fluidInputs(getFluidStack("potion.nightvision.long", 50)) .fluidOutputs(getFluidStack("potion.invisibility.long", 10)) .duration(1 * MINUTES + 42 * SECONDS + 8 * TICKS) @@ -362,24 +344,6 @@ public class FermenterRecipes implements Runnable { GT_Values.RA.stdBuilder() .noItemInputs() .noItemOutputs() - .fluidInputs(getFluidStack("potion.poison.long", 50)) - .fluidOutputs(getFluidStack("potion.damage.long", 10)) - .duration(1 * MINUTES + 42 * SECONDS + 8 * TICKS) - .eut(2) - .addTo(sFermentingRecipes); - - GT_Values.RA.stdBuilder() - .noItemInputs() - .noItemOutputs() - .fluidInputs(getFluidStack("potion.waterbreathing.long", 50)) - .fluidOutputs(getFluidStack("potion.damage.long", 10)) - .duration(1 * MINUTES + 42 * SECONDS + 8 * TICKS) - .eut(2) - .addTo(sFermentingRecipes); - - GT_Values.RA.stdBuilder() - .noItemInputs() - .noItemOutputs() .fluidInputs(getFluidStack("potion.fireresistance.long", 50)) .fluidOutputs(getFluidStack("potion.slowness.long", 10)) .duration(1 * MINUTES + 42 * SECONDS + 8 * TICKS) |