mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-04-30 05:01:41 -04:00
Update init.lua
This commit is contained in:
parent
4d046db488
commit
eaf3d1988b
1 changed files with 6 additions and 6 deletions
|
@ -23,15 +23,15 @@ for i = 1, #dyes do
|
|||
type = "shapeless",
|
||||
output = "wool:" .. name,
|
||||
recipe = {"group:dye," .. color_group, "group:wool"},
|
||||
|
||||
minetest.register_craft{
|
||||
type = "shapeless",
|
||||
output = "farming:string 4",
|
||||
recipe = {"group:wool"}
|
||||
}
|
||||
}
|
||||
end
|
||||
|
||||
-- Alternative recipe for strings.
|
||||
minetest.register_craft({
|
||||
output="farming:string 4",
|
||||
recipe={{"group:wool"}}
|
||||
})
|
||||
|
||||
-- Legacy
|
||||
-- Backwards compatibility with jordach's 16-color wool mod
|
||||
minetest.register_alias("wool:dark_blue", "wool:blue")
|
||||
|
|
Loading…
Add table
Reference in a new issue