From 2ca3f3d0e0e129a9f27c443713d3eee72b0742ec Mon Sep 17 00:00:00 2001 From: Integer Limit <103940576+IntegerLimit@users.noreply.github.com> Date: Fri, 4 Oct 2024 12:04:09 +1000 Subject: [PATCH] Fix ME Conduit Recipe (#1025) [BUG] --- .../postInit/Post-Initial/Main/Mod-Specific/eio.groovy | 8 ++++++++ overrides/scripts/electronics.zs | 6 ------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/overrides/groovy/postInit/Post-Initial/Main/Mod-Specific/eio.groovy b/overrides/groovy/postInit/Post-Initial/Main/Mod-Specific/eio.groovy index 41f47bc..885559d 100644 --- a/overrides/groovy/postInit/Post-Initial/Main/Mod-Specific/eio.groovy +++ b/overrides/groovy/postInit/Post-Initial/Main/Mod-Specific/eio.groovy @@ -8,3 +8,11 @@ for (var stack in Common.eioGlasses) { mods.jei.ingredient.hide(new ItemStack(stack.getItem(), 1, Short.MAX_VALUE)) mods.jei.ingredient.add(stack.copy()) } + +// ME Conduit - Crafting Table +crafting.shapedBuilder() + .output(item('enderio:item_me_conduit') * 4) + .matrix('BBB', 'PPP', 'BBB') + .key('B', ore('itemConduitBinder')) + .key('P', item('appliedenergistics2:part', 36)) + .replace().register() diff --git a/overrides/scripts/electronics.zs b/overrides/scripts/electronics.zs index 3c26a34..bc60c21 100644 --- a/overrides/scripts/electronics.zs +++ b/overrides/scripts/electronics.zs @@ -92,12 +92,6 @@ recipes.addShaped( * 4, [ [,,], [, , ]]); -//me conduit - by hand -recipes.addShaped( * 4, [ - [, , ], - [,,], - [, , ]]); - //redstone conduit - assembler assembler.recipeBuilder() .inputs([ * 3, * 6])