1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-01-05 04:50:18 +01:00

Update init.lua

Added new strings recipe.
This commit is contained in:
Maurus 2024-06-23 12:05:52 -03:00 committed by GitHub
parent f03c992864
commit 1c585f0989
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,6 +26,12 @@ for i = 1, #dyes do
}
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")