Sokomine / cottages

Minetest mod for building medieval houses
GNU General Public License v3.0
15 stars 19 forks source link

Craft recipe conflict using cottages:hay #23

Open axcore opened 1 year ago

axcore commented 1 year ago

In nodes_hay.lua

    output = "cottages:hay_mat 9",
    recipe = {
        {"cottages:hay"},
    },
})
minetest.register_craft({
    output = "cottages:hay_bale",
    recipe = {{"cottages:hay"}},
})
fluxionary commented 1 year ago

possible duplicate of #13