From 14c38dd16ca70078954822581d37b65d4ed519fa Mon Sep 17 00:00:00 2001 From: Shay <160423885+HandsomeAsianMan@users.noreply.github.com> Date: Mon, 15 Jul 2024 00:53:43 +0100 Subject: [PATCH] Fix AE2 Inscriber Recipes (#801) [BUG] [IGNORE] checks = { compareBefore = "1.7-beta-5" } # Only apply this if the commit being compared against is 1.7-beta-5 or newer [IGNORE] [FIXUP] sha = "1018afd86f38fd706785607c5dbaeb828338c42b" newBody = ''' [BUG] [IGNORE] checks = { compareBefore = "1.7-beta-5" } # Only apply this if the commit being compared against is 1.7-beta-5 or newer [IGNORE] ''' [FIXUP] Co-authored-by: Integer Limit <103940576+IntegerLimit@users.noreply.github.com> --- .../Post-Initial/Main/Mod-Specific/ae2/misc.groovy | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/overrides/groovy/postInit/Post-Initial/Main/Mod-Specific/ae2/misc.groovy b/overrides/groovy/postInit/Post-Initial/Main/Mod-Specific/ae2/misc.groovy index e1c840a..88d31b0 100644 --- a/overrides/groovy/postInit/Post-Initial/Main/Mod-Specific/ae2/misc.groovy +++ b/overrides/groovy/postInit/Post-Initial/Main/Mod-Specific/ae2/misc.groovy @@ -84,13 +84,13 @@ mods.appliedenergistics2.inscriber.recipeBuilder() .input(ore('plateSilicon')) .top(item('appliedenergistics2:material:19')) .output(item('appliedenergistics2:material:20')) - .register() + .inscribe().register() mods.appliedenergistics2.inscriber.recipeBuilder() .input(ore('itemSilicon')) .top(item('appliedenergistics2:material:19')) .output(item('appliedenergistics2:material:20')) - .register() + .inscribe().register() var applyProcessorChange = { OreDictIngredient lens, OreDictIngredient plate, ItemStack press, ItemStack circuit, ItemStack processor -> /* Presses */ @@ -108,7 +108,7 @@ var applyProcessorChange = { OreDictIngredient lens, OreDictIngredient plate, It .input(plate) .top(press) .output(circuit) - .register() + .inscribe().register() /* Processors */ mods.appliedenergistics2.inscriber.removeByOutput(processor) @@ -117,7 +117,7 @@ var applyProcessorChange = { OreDictIngredient lens, OreDictIngredient plate, It .top(circuit) .bottom(item('appliedenergistics2:material:20')) // Silicon .output(processor) - .inscribe().register() + .press().register() } // Calculation