mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-19 17:41:06 +01:00
Make lecterns require wood slabs for crafting
Otherwise you can use stone slabs to craft lecterns, which doesn't make sense
This commit is contained in:
parent
d5c150d46c
commit
2bd36b5d66
1 changed files with 2 additions and 2 deletions
|
@ -130,9 +130,9 @@ end
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mcl_lectern:lectern",
|
output = "mcl_lectern:lectern",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"group:slab", "group:slab", "group:slab"},
|
{"group:wood_slab", "group:wood_slab", "group:wood_slab"},
|
||||||
{"", "mcl_books:bookshelf", ""},
|
{"", "mcl_books:bookshelf", ""},
|
||||||
{"", "group:slab", ""},
|
{"", "group:wood_slab", ""},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue