From f5aaf96c2ec224d99e9984bc5433bd4ce21f31ea Mon Sep 17 00:00:00 2001 From: tchncs Date: Thu, 25 Oct 2018 14:53:42 +0200 Subject: [PATCH] Add recipe to craft wool to cotton --- cotton.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/cotton.lua b/cotton.lua index eef6425..409bdee 100644 --- a/cotton.lua +++ b/cotton.lua @@ -37,6 +37,14 @@ minetest.register_craft({ } }) +-- TODO: different output for slabs +minetest.register_craft({ + output = "farming:cotton 4", + recipe = { + {"group:wool"}, + } +}) + -- cotton definition local crop_def = { drawtype = "plantlike",