mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2025-02-09 08:40:38 +01:00
allow pig tail thread to make wool
This commit is contained in:
parent
72b72d2cc7
commit
6b4ebb9ff9
@ -4,3 +4,4 @@ farming?
|
||||
cottages?
|
||||
bucket?
|
||||
dynamic_liquid?
|
||||
wool?
|
@ -62,6 +62,16 @@ minetest.register_craftitem("dfcaverns:pig_tail_thread", {
|
||||
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({
|
||||
type = "fuel",
|
||||
recipe = "dfcaverns:pig_tail_thread",
|
||||
|
Loading…
Reference in New Issue
Block a user