Suggestion: allow machine variables in arrays
pyure opened this issue ยท 0 comments
Right now I can do:
{
"x": 1,
"y": 0,
"z": 1,
"elements": [
"contenttweaker:sub_block_holder_3@0",
"modularmachinery:blockfluidinputhatch"
]
}
Or I can do:
{
"x": 1,
"y": 0,
"z": 1,
"elements": "steel_item_and_fluids"
}
But I cannot do:
{
"x": 1,
"y": 0,
"z": 1,
"elements": [
"contenttweaker:sub_block_holder_3@1",
"steel_item_and_fluids"
]
}
This would allow significantly better organization and non-duplication of machine recipe components.