Make concrete powder recipe shapeless

This commit is contained in:
Wuzzy 2017-02-11 23:51:13 +01:00
parent cd5fb8322f
commit 3c54fed5b6
1 changed files with 5 additions and 4 deletions

View File

@ -81,12 +81,13 @@ for _, row in ipairs(block.dyes) do
},
})
minetest.register_craft({
type = "shapeless",
output = 'mcl_colorblocks:concrete_powder_'..name..' 8',
recipe = {
{'mcl_core:sand', 'mcl_core:gravel', 'mcl_core:sand'},
{'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',
'mcl_core:gravel', 'mcl_dye:'..craft_color_group, 'mcl_core:gravel',
'mcl_core:sand', 'mcl_core:gravel', 'mcl_core:sand',
}
})
end
end