Update cobweb craft to use farming:string (#130)

Add `farming` to depends, since it was missing
master
Louis Royer 2020-08-26 17:32:29 +02:00 committed by SmallJoker
parent 841a033983
commit e26e4fde05
3 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,7 @@
default
bucket
doors
farming
stairs
xpanes
fire?

View File

@ -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.

View File

@ -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"}
}
})