allow pig tail thread to make wool

This commit is contained in:
FaceDeer 2017-04-02 15:49:31 -06:00
parent 72b72d2cc7
commit 6b4ebb9ff9
2 changed files with 12 additions and 1 deletions

View File

@ -3,4 +3,5 @@ subterrane
farming?
cottages?
bucket?
dynamic_liquid?
dynamic_liquid?
wool?

View File

@ -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",