Add back recipe for crafting sticks from bamboo.

This commit is contained in:
villager8472 2024-12-15 19:08:39 +01:00
parent 6873af93d4
commit 79070d6bfa

View File

@ -17,3 +17,11 @@ minetest.register_craft({
{"group:bamboo_tree", "", "group:bamboo_tree"},
{"group:bamboo_tree", "", "group:bamboo_tree"}}
})
minetest.register_craft({
output = "mcl_core:stick",
recipe = {
{"mcl_bamboo:bamboo"},
{"mcl_bamboo:bamboo"},
}
})