fix: mekanism pipe recipes

This commit is contained in:
LordMZTE 2023-03-11 21:19:38 +01:00
parent 3ecb006ac0
commit aace4755f7
Signed by: LordMZTE
GPG Key ID: B64802DC33A64FF6
2 changed files with 1 additions and 1 deletions

0
src/overrides/scripts/ae2.zs Executable file → Normal file
View File

2
src/overrides/scripts/mekanism.zs Executable file → Normal file
View File

@ -11,7 +11,7 @@ val thermodynamicConductor = <Mekanism:PartTransmitter:18>;
function pipeRecipe(pipe as IItemStack, middleItem as IIngredient) {
recipes.remove(pipe);
recipes.addShaped(
pipe,
pipe * 8,
[[<ore:ingotOsmium>, middleItem, <ore:ingotOsmium>]]
);
}