mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2025-07-01 07:30:43 +02:00
Obey log_mods setting (plural "mods"), added stick crafting using a sapling or a jungle sapling.
This commit is contained in:
10
crafting.lua
10
crafting.lua
@ -5,6 +5,16 @@ minetest.register_craft({
|
||||
recipe = {{"default:dry_shrub"},}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "default:stick 1",
|
||||
recipe = {{"default:sapling"},}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "default:stick 1",
|
||||
recipe = {{"default:junglesapling"},}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "default:dirt_with_grass 1",
|
||||
type = "shapeless",
|
||||
|
Reference in New Issue
Block a user