Fixed Lantern Crafting Recipe.

This commit is contained in:
wintersknight94 2021-03-16 20:14:45 -05:00 committed by GitHub
parent aedeffc308
commit ef93a0dc06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,9 +57,9 @@ minetest.register_node(modname .. ":lantern_empty", {
nodecore.register_craft({
label = "assemble lantern",
nodes = {
{match = {groups = {chisel = true}}, replace = "air"},
{match = "nc_lode:bar_annealed", replace = "air"},
{y = -1, match = "nc_optics:glass", replace = "air"},
{y = -2, match = {groups = {metal_block = true}}, replace = modname .. ":lantern_empty"},
{y = -2, match = "nc_lode:block_annealed", replace = modname .. ":lantern_empty"},
}
})