forked from VoxeLibre/VoxeLibre
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
|
@ -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 New Issue