From e9741c039772243e7b3a3bf92abda386ea3420ae Mon Sep 17 00:00:00 2001 From: Sokomine Date: Sun, 17 Feb 2019 14:32:29 +0100 Subject: [PATCH] fixed recipe for rope --- nodes_mining.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes_mining.lua b/nodes_mining.lua index ba557f1..2098afe 100644 --- a/nodes_mining.lua +++ b/nodes_mining.lua @@ -31,7 +31,7 @@ minetest.register_node("cottages:rope", { minetest.register_craft({ output = "cottages:rope", recipe = { - {"default:cotton","default:cotton","default:cotton"} + {"farming:cotton","farming:cotton","farming:cotton"} } })