Skip to content

Commit

Permalink
Adjust Wood Pipe Recipes (GregTechCEu#1969)
Browse files Browse the repository at this point in the history
  • Loading branch information
ALongStringOfNumbers authored Jul 19, 2023
1 parent 5e39292 commit bf3f7f5
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ private static void processPipeTiny(OrePrefix pipePrefix, Material material, IMa
if (ModHandler.isMaterialWood(material)) {
ModHandler.addShapedRecipe(String.format("tiny_%s_pipe", material),
GTUtility.copy(2, pipeStack), " s ", "rXw",
'X', new UnificationEntry(OrePrefix.plate, material));
'X', new UnificationEntry(OrePrefix.plank, material));

ASSEMBLER_RECIPES.recipeBuilder().duration(200).EUt(VA[LV])
.input(plate, material)
Expand Down Expand Up @@ -136,7 +136,7 @@ private static void processPipeSmall(OrePrefix pipePrefix, Material material, IM
if (ModHandler.isMaterialWood(material)) {
ModHandler.addShapedRecipe(String.format("small_%s_pipe", material),
pipeStack, "wXr",
'X', new UnificationEntry(OrePrefix.plate, material));
'X', new UnificationEntry(OrePrefix.plank, material));

ASSEMBLER_RECIPES.recipeBuilder().duration(200).EUt(VA[LV])
.input(plate, material)
Expand Down Expand Up @@ -178,7 +178,7 @@ private static void processPipeNormal(OrePrefix pipePrefix, Material material, I
if (ModHandler.isMaterialWood(material)) {
ModHandler.addShapedRecipe(String.format("medium_%s_pipe", material),
pipeStack, "XXX", "w r",
'X', new UnificationEntry(OrePrefix.plate, material));
'X', new UnificationEntry(OrePrefix.plank, material));

ASSEMBLER_RECIPES.recipeBuilder().duration(200).EUt(VA[LV])
.input(plate, material, 3)
Expand Down Expand Up @@ -220,7 +220,7 @@ private static void processPipeLarge(OrePrefix pipePrefix, Material material, IM
if (ModHandler.isMaterialWood(material)) {
ModHandler.addShapedRecipe(String.format("large_%s_pipe", material),
pipeStack, "XXX", "w r", "XXX",
'X', new UnificationEntry(OrePrefix.plate, material));
'X', new UnificationEntry(OrePrefix.plank, material));

ASSEMBLER_RECIPES.recipeBuilder().duration(100).EUt(VA[LV])
.input(plate, material, 6)
Expand Down

0 comments on commit bf3f7f5

Please sign in to comment.