Skip to content

Commit

Permalink
Fix some recipe log warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
serenibyss committed Dec 31, 2021
1 parent b3ac404 commit e097d1d
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,11 @@ private static void processPipeHuge(OrePrefix pipePrefix, Material material, IMa
.EUt(6 * getVoltageMultiplier(material))
.buildAndRegister();

ModHandler.addShapedRecipe(String.format("huge_%s_pipe", material.toString()),
pipeStack, "XhX", "X X", "XwX",
'X', new UnificationEntry(OrePrefix.plateDouble, material));
if (OrePrefix.plateDouble.doGenerateItem(material)) {
ModHandler.addShapedRecipe(String.format("huge_%s_pipe", material.toString()),
pipeStack, "XhX", "X X", "XwX",
'X', new UnificationEntry(OrePrefix.plateDouble, material));
}
}

private static void processPipeQuadruple(OrePrefix pipePrefix, Material material, FluidPipeProperties property) {
Expand Down

0 comments on commit e097d1d

Please sign in to comment.