change rope recipe to avoid conflict w/ ethereal

This commit is contained in:
flux 2023-04-24 10:14:30 -07:00
parent d38159d451
commit 11a223b1b1
No known key found for this signature in database
GPG Key ID: 9333B27816848A15
1 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,9 @@ if ci.cotton then
minetest.register_craft({ minetest.register_craft({
output = "cottages:rope", output = "cottages:rope",
recipe = { recipe = {
{ ci.cotton, ci.cotton, ci.cotton }, { ci.cotton, "", "" },
{ "", ci.cotton, "" },
{ "", "", ci.cotton },
}, },
}) })
end end