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>
This commit is contained in:
Shay 2024-07-15 00:53:43 +01:00 committed by GitHub
parent 1018afd86f
commit 14c38dd16c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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