diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2016-12-10 10:31:18 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2016-12-10 10:31:18 +0000 |
commit | 8cdd0f7b8ea4c5550c9ea615593c4c88098e18b8 (patch) | |
tree | 95611e8a6edd761ad80b220dc1e0b775220857b0 | |
parent | b6347c81ecc4864010f2f9ea8ae0c420f7a6c40d (diff) |
add 2x2 red bakedclay to 16x clay brick recipe
-rw-r--r-- | init.lua | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -103,9 +103,16 @@ minetest.register_craft( { recipe = {"default:dry_shrub"} }) --- register some new flowers to fill in missing dye colours - +-- 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) |