Skip to content
Snippets Groups Projects
Commit ad6c2cf0 authored by Paul Ouellette's avatar Paul Ouellette Committed by Paramat
Browse files

Dye: Remove type="shapeless" from single-item recipes

parent 2033b2cc
No related branches found
No related tags found
No related merge requests found
......@@ -35,26 +35,29 @@ for _, row in ipairs(dye.dyes) do
})
minetest.register_craft({
type = "shapeless",
output = "dye:" .. name .. " 4",
recipe = {"group:flower,color_" .. name},
recipe = {
{"group:flower,color_" .. name}
},
})
end
-- Manually add coal -> black dye
minetest.register_craft({
type = "shapeless",
output = "dye:black 4",
recipe = {"group:coal"},
recipe = {
{"group:coal"}
},
})
-- Manually add blueberries->violet dye
minetest.register_craft({
type = "shapeless",
output = "dye:violet 2",
recipe = {"default:blueberries"},
recipe = {
{"default:blueberries"}
},
})
-- Mix recipes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment