From e26e4fde05172b39efc66c3b10cea01324d53bb4 Mon Sep 17 00:00:00 2001 From: Louis Royer <55180044+louisroyer@users.noreply.github.com> Date: Wed, 26 Aug 2020 17:32:29 +0200 Subject: [PATCH] Update cobweb craft to use farming:string (#130) Add `farming` to depends, since it was missing --- depends.txt | 1 + mod.conf | 2 +- src/recipes.lua | 6 +++--- 3 files changed, 5 insertions(+), 4 deletions(-) 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"} } })