#Help needed with create's sequenced assembly and the destroy mod

4 messages · Page 1 of 1 (latest)

boreal ravine
#

Recipes using vanilla items work and appear on jei whereas recipes with items from the destroy mod dont appear at all.

cedar oxideBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

boreal ravine
#

this is the code:

#
ServerEvents.recipes(event => {
event.recipes.create.sequenced_assembly(["minecraft:target"
        ], "minecraft:chest", [
        event.recipes.createDeploying("create:incomplete_precision_mechanism", ["create:incomplete_precision_mechanism", "minecraft:armor_stand"]),
        ]).transitionalItem("create:incomplete_precision_mechanism").loops(1)

        event.recipes.create.sequenced_assembly(["destroy:catalytic_converter"
        ], "destroy:platinum_powder", [
        event.recipes.createDeploying("destroy:incomplete_catalytic_converter", ["destroy:incomplete_catalytic_converter", "destroy:stainless_steel_ingot"]),
        ]).transitionalItem("destroy:incomplete_catalytic_converter").loops(1)
});