forked from VoxeLibre/VoxeLibre
Make concrete powder recipe shapeless
This commit is contained in:
parent
cd5fb8322f
commit
3c54fed5b6
|
@ -81,12 +81,13 @@ for _, row in ipairs(block.dyes) do
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
output = 'mcl_colorblocks:concrete_powder_'..name..' 8',
|
output = 'mcl_colorblocks:concrete_powder_'..name..' 8',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'mcl_core:sand', 'mcl_core:gravel', 'mcl_core:sand'},
|
'mcl_core:sand', 'mcl_core:gravel', 'mcl_core:sand',
|
||||||
{'mcl_core:gravel', 'mcl_dye:'..craft_color_group, 'mcl_core:gravel'},
|
'mcl_core:gravel', 'mcl_dye:'..craft_color_group, 'mcl_core:gravel',
|
||||||
{'mcl_core:sand', 'mcl_core:gravel', 'mcl_core:sand'},
|
'mcl_core:sand', 'mcl_core:gravel', 'mcl_core:sand',
|
||||||
},
|
}
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue