Skip to content

Commit

Permalink
Unify creosote block recipe (for dev branch) (#1918)
Browse files Browse the repository at this point in the history
* use 750, same as carpenter

* delete duplicate non-oredicted recipe
  • Loading branch information
chochem authored Apr 24, 2023
1 parent 40527cb commit 3d883d0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void registerOre(OrePrefixes aPrefix, Materials aMaterial, String aOreDic
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1L, aStack))
.itemOutputs(GT_ModHandler.getModItem(Railcraft.ID, "cube", 1L, 8))
.fluidInputs(Materials.Creosote.getFluid(1000L))
.fluidInputs(Materials.Creosote.getFluid(750L))
.noFluidOutputs()
.duration(16 * TICKS)
.eut(TierEU.ULV)
Expand Down
Original file line number Diff line number Diff line change
@@ -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;
Expand Down Expand Up @@ -366,14 +365,5 @@ public void run() {
.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);
}
}

0 comments on commit 3d883d0

Please sign in to comment.