Skip to content
Snippets Groups Projects
Commit 32ee20eb authored by Perttu Ahola's avatar Perttu Ahola
Browse files

Use working shapeless multigroup recipes for dyeing wool

parent 937ec64e
Branches
Tags 0.4.2-rc1
No related merge requests found
......@@ -39,18 +39,10 @@ for _, row in ipairs(wool.dyes) do
if craft_color_group then
-- Crafting from dye and white wool
minetest.register_craft({
output = 'wool:'..name..' 16',
recipe = {
{'group:'..craft_color_group},
{'wool:white'},
}
})
-- Shapeless group recipes don't currently work
--[[minetest.register_craft({
type = "shapeless",
output = 'wool:'..name..' 16',
recipe = {'group:'..craft_color_group, 'wool:white'},
})--]]
recipe = {'group:dye,'..craft_color_group, 'wool:white'},
})
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment