diff options
author | chochem <40274384+chochem@users.noreply.github.com> | 2023-04-26 18:08:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-26 19:08:09 +0200 |
commit | f28ce837e2b41988ae7f0674f14b2bd93c0c4254 (patch) | |
tree | 0b87a66424b65b437bb25a6046fe15988bf10b99 /src/main/java/gregtech/loaders/postload/recipes/ChemicalBathRecipes.java | |
parent | 61ebde5fdf00ad404801b7e1f9231242a1bf11ca (diff) | |
download | GT5-Unofficial-f28ce837e2b41988ae7f0674f14b2bd93c0c4254.tar.gz GT5-Unofficial-f28ce837e2b41988ae7f0674f14b2bd93c0c4254.tar.bz2 GT5-Unofficial-f28ce837e2b41988ae7f0674f14b2bd93c0c4254.zip |
Unify creosote block recipe (#1919)
* use 750, same as carpenter
* delete duplicate non-oredicted recipe
Diffstat (limited to 'src/main/java/gregtech/loaders/postload/recipes/ChemicalBathRecipes.java')
-rw-r--r-- | src/main/java/gregtech/loaders/postload/recipes/ChemicalBathRecipes.java | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/main/java/gregtech/loaders/postload/recipes/ChemicalBathRecipes.java b/src/main/java/gregtech/loaders/postload/recipes/ChemicalBathRecipes.java index bf7a2a67a3..d61fa446a9 100644 --- a/src/main/java/gregtech/loaders/postload/recipes/ChemicalBathRecipes.java +++ b/src/main/java/gregtech/loaders/postload/recipes/ChemicalBathRecipes.java @@ -1,7 +1,6 @@ package gregtech.loaders.postload.recipes; import static gregtech.api.enums.Mods.BuildCraftTransport; -import static gregtech.api.enums.Mods.Railcraft; import static gregtech.api.util.GT_ModHandler.getModItem; import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sChemicalBathRecipes; import static gregtech.api.util.GT_RecipeBuilder.MINUTES; @@ -366,14 +365,5 @@ public class ChemicalBathRecipes implements Runnable { .eut(8) .addTo(sChemicalBathRecipes); } - - GT_Values.RA.stdBuilder() - .itemInputs(GT_OreDictUnificator.get(OrePrefixes.log, Materials.Wood, 1)) - .itemOutputs(getModItem(Railcraft.ID, "cube", 1, 8)) - .fluidInputs(Materials.Creosote.getFluid(100)) - .noFluidOutputs() - .duration(5 * SECONDS) - .eut(4) - .addTo(sChemicalBathRecipes); } } |