forked from VoxeLibre/VoxeLibre
Make white wool craftable
This commit is contained in:
parent
b7b5f619ab
commit
b8aec37c98
|
@ -73,6 +73,14 @@ for _, row in ipairs(wool.dyes) do
|
|||
end
|
||||
end
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mcl_wool:white",
|
||||
recipe = {
|
||||
{ "mcl_mobitems:string", "mcl_mobitems:string" },
|
||||
{ "mcl_mobitems:string", "mcl_mobitems:string" },
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "group:wool",
|
||||
|
|
Loading…
Reference in New Issue