From fb8a812a1773f45db38956c71803bf68dcbc9a3f Mon Sep 17 00:00:00 2001 From: TenPlus1 Date: Wed, 8 Jul 2020 17:03:26 +0100 Subject: [PATCH] change cotton to paper recipe so it doesnt conflict with ropes mod --- extra.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/extra.lua b/extra.lua index 051b888..ccdf572 100644 --- a/extra.lua +++ b/extra.lua @@ -111,11 +111,10 @@ end -- END if -- Paper (2x3 string = 4 paper) minetest.register_craft({ - output = "default:paper 4", + output = "default:paper 2", recipe = { {"farming:cotton", "farming:cotton"}, - {"farming:cotton", "farming:cotton"}, - {"farming:cotton", "farming:cotton"}, + {"farming:cotton", "farming:cotton"} } })