From 3ecbf207faac50974ed2644bf70c1d376b2414f1 Mon Sep 17 00:00:00 2001 From: Sokomine Date: Sat, 6 Sep 2025 21:20:01 +0200 Subject: [PATCH] added alternate receipe for cottages:rope --- nodes_mining.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/nodes_mining.lua b/nodes_mining.lua index 2098afe..1ab27ca 100644 --- a/nodes_mining.lua +++ b/nodes_mining.lua @@ -35,6 +35,21 @@ minetest.register_craft({ } }) +minetest.register_craft({ + output = "cottages:rope", + recipe = { + {"farming:cotton","","farming:cotton"}, + {"","farming:cotton",""} + } +}) + +minetest.register_craft({ + output = "cottages:rope 3", + recipe = { + {"cottages:hay_mat"} + } +}) + -- Note: This rope also counts as a rail node; thus, carts can move through it minetest.register_node("cottages:ladder_with_rope_and_rail", {