Recipe Handcrafting Problem
Posted: Tue Jul 26, 2016 4:21 pm
Hi,
So I added a burner mining drill disassemble recipe to my mod and it is causing a problem where I now can't auto craft iron gears. What I mean by auto craft is that if the gears is a component in another item and I have iron plate the gears would be automatically crafted as a component of the new entity I'm crafting.
If I remove the Iron Gears from the results of the disassemble recipe I can once again craft gears.
Is there a solution to this?
Is there a way to force a recipe to be done in a assembly machine and not by hand?
Here is the recipe:
Thanks.
So I added a burner mining drill disassemble recipe to my mod and it is causing a problem where I now can't auto craft iron gears. What I mean by auto craft is that if the gears is a component in another item and I have iron plate the gears would be automatically crafted as a component of the new entity I'm crafting.
If I remove the Iron Gears from the results of the disassemble recipe I can once again craft gears.
Is there a solution to this?
Is there a way to force a recipe to be done in a assembly machine and not by hand?
Here is the recipe:
Code: Select all
{
type = "recipe",
name = "bi-burner-mining-drill-disassemble",
icon = "__Bio_Industries__/graphics/icons/burner-mining-drill_disassemble.png",
subgroup = "extraction-machine",
order = "a[items]-a[burner-mining-drill]",
energy_required = 2,
ingredients =
{
{"burner-mining-drill", 1},
},
results=
{
{"iron-gear-wheel", 2},
{"stone", 4},
{"iron-plate", 6}
},
},