From bce47c2ce42a0b296dff7920daf210b90e33130d Mon Sep 17 00:00:00 2001 From: jojoa1997 Date: Sat, 19 Jan 2013 17:51:09 -0500 Subject: [PATCH] adds a wool recipe for cotton --- flowers/init.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/flowers/init.lua b/flowers/init.lua index d97f72c..77ab1f5 100644 --- a/flowers/init.lua +++ b/flowers/init.lua @@ -135,3 +135,12 @@ minetest.register_craft({ } }) +minetest.register_craft({ + output = "wool:white 2", + recipe = { + {'', '', ''}, + {'flowers:cotton', 'flowers:cotton', ''}, + {'flowers:cotton', 'flowers:cotton', ''}, + } +}) +