1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2024-12-22 16:10:18 +01:00

add crafting recipe for bookshelf

This commit is contained in:
Vanessa Ezekowitz 2014-05-30 00:42:35 -04:00
parent 5d1d559109
commit 45a8e86021

View File

@ -141,3 +141,15 @@ if minetest.get_modpath("moreblocks") then
} }
}) })
end 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"},
},
})