add crafting recipe for bookshelf

This commit is contained in:
Vanessa Ezekowitz 2014-05-30 00:42:35 -04:00
parent 5d1d559109
commit 45a8e86021
1 changed files with 12 additions and 0 deletions

View File

@ -141,3 +141,15 @@ if minetest.get_modpath("moreblocks") then
}
})
end
-- crafting recipes
minetest.register_craft( {
output = "homedecor:openframe_bookshelf",
recipe = {
{"group:wood", "", "group:wood"},
{"default:book", "default:book", "default:book"},
{"group:wood", "", "group:wood"},
},
})