mirror of
https://github.com/minetest/minetest_game.git
synced 2024-12-22 15:00:18 +01:00
Dye: Remove type="shapeless" from single-item recipes
This commit is contained in:
parent
2033b2cc65
commit
ad6c2cf035
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user