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:
PrairieWind 2023-03-29 11:41:48 -06:00 committed by Gitea
parent d5c150d46c
commit 2bd36b5d66
1 changed files with 2 additions and 2 deletions

View File

@ -130,9 +130,9 @@ end
minetest.register_craft({
output = "mcl_lectern:lectern",
recipe = {
{"group:slab", "group:slab", "group:slab"},
{"group:wood_slab", "group:wood_slab", "group:wood_slab"},
{"", "mcl_books:bookshelf", ""},
{"", "group:slab", ""},
{"", "group:wood_slab", ""},
}
})