summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorh-v-smacker <hans-von-smacker+github@gmail.com>2018-07-15 11:00:43 +0300
committerh-v-smacker <hans-von-smacker+github@gmail.com>2018-07-15 11:00:43 +0300
commita95f6c1753fd6c69c645ba9b4e7ccdcdc9367ef5 (patch)
treee37fa26c6eab8c15856353e5581028bffd6558b3
parent2d2ba0d273f02e7cc5108b8348312175327e1ed8 (diff)
rope fix
-rw-r--r--nodes_mining.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/nodes_mining.lua b/nodes_mining.lua
index a8a5763..891c380 100644
--- a/nodes_mining.lua
+++ b/nodes_mining.lua
@@ -32,7 +32,8 @@ minetest.register_node("cottages:rope", {
minetest.register_craft({
output = "cottages:rope",
recipe = {
- {"default:cotton","default:cotton","default:cotton"}
+ {"farming:cotton","farming:string","farming:cotton"},
+ {"farming:string","farming:cotton","farming:string"}
}
})