add 2x2 red bakedclay to 16x clay brick recipe

This commit is contained in:
TenPlus1 2016-12-10 10:31:18 +00:00
parent b6347c81ec
commit 8cdd0f7b8e
1 changed files with 9 additions and 2 deletions

View File

@ -103,9 +103,16 @@ minetest.register_craft( {
recipe = {"default:dry_shrub"}
})
-- 2x2 red bakedclay makes 16x clay brick
minetest.register_craft( {
output = "default:clay_brick 16",
recipe = {
{"bakedclay:red", "bakedclay:red"},
{"bakedclay:red", "bakedclay:red"},
}
})
-- register some new flowers to fill in missing dye colours
-- flower registration (borrowed from default game)
local function add_simple_flower(name, desc, box, f_groups)