mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2024-11-05 10:00:40 +01:00
allow pig tail thread to make wool
This commit is contained in:
parent
72b72d2cc7
commit
6b4ebb9ff9
|
@ -3,4 +3,5 @@ subterrane
|
|||
farming?
|
||||
cottages?
|
||||
bucket?
|
||||
dynamic_liquid?
|
||||
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