1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-28 07:20:33 +02:00

Add a craft recipe for 3d chests

This commit is contained in:
LeMagnesium 2015-08-22 14:29:08 +02:00
parent e50a9be477
commit a69e09fc68

View File

@ -252,3 +252,12 @@ minetest.register_node("3dchest:chest", {
end
end,
})
minetest.register_craft({
output = "3dchest:chest",
recipe = {
{"default:tree", "default:tree", "default:tree"},
{"default:wood", "", "default:wood"},
{"default:wood", "default:wood", "default:wood"},
}
})