change recipe for glass pane to avoid conflict w/ xdecor

This commit is contained in:
flux 2023-04-26 06:56:22 -07:00
parent b83ee84615
commit b0cf295bd5
No known key found for this signature in database
GPG Key ID: 9333B27816848A15
1 changed files with 2 additions and 2 deletions

View File

@ -33,9 +33,9 @@ if ci.stick and ci.glass then
minetest.register_craft({
output = "cottages:glass_pane 4",
recipe = {
{ ci.stick, ci.stick, ci.stick },
{ "", ci.stick, "" },
{ ci.stick, ci.glass, ci.stick },
{ ci.stick, ci.stick, ci.stick },
{ "", ci.stick, "" },
},
})
end