mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2025-02-03 22:10:24 +01:00
allow pig tail thread to make wool
This commit is contained in:
parent
72b72d2cc7
commit
6b4ebb9ff9
@ -4,3 +4,4 @@ farming?
|
|||||||
cottages?
|
cottages?
|
||||||
bucket?
|
bucket?
|
||||||
dynamic_liquid?
|
dynamic_liquid?
|
||||||
|
wool?
|
@ -62,6 +62,16 @@ minetest.register_craftitem("dfcaverns:pig_tail_thread", {
|
|||||||
groups = {flammable = 1, thread = 1},
|
groups = {flammable = 1, thread = 1},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if minetest.get_modpath("wool") then
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "wool:white",
|
||||||
|
recipe = {
|
||||||
|
{"group:thread", "group:thread"},
|
||||||
|
{"group:thread", "group:thread"},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "fuel",
|
type = "fuel",
|
||||||
recipe = "dfcaverns:pig_tail_thread",
|
recipe = "dfcaverns:pig_tail_thread",
|
||||||
|
Loading…
Reference in New Issue
Block a user