diff --git a/depends.txt b/depends.txt index bc94b29..c582a68 100644 --- a/depends.txt +++ b/depends.txt @@ -1,6 +1,7 @@ default bucket doors +farming stairs xpanes fire? diff --git a/mod.conf b/mod.conf index c8cc8cd..3f843bc 100644 --- a/mod.conf +++ b/mod.conf @@ -1,4 +1,4 @@ name = xdecor -depends = default, bucket, doors, stairs, xpanes +depends = default, bucket, doors, farming, stairs, xpanes optional_depends = fire, oresplus, moreblocks, mesecons description = A decoration mod meant to be simple and well-featured. diff --git a/src/recipes.lua b/src/recipes.lua index a258b72..ec51ee0 100644 --- a/src/recipes.lua +++ b/src/recipes.lua @@ -66,9 +66,9 @@ minetest.register_craft({ minetest.register_craft({ output = "xdecor:cobweb", recipe = { - {"farming:cotton", "", "farming:cotton"}, - {"", "farming:cotton", ""}, - {"farming:cotton", "", "farming:cotton"} + {"farming:string", "", "farming:string"}, + {"", "farming:string", ""}, + {"farming:string", "", "farming:string"} } })