From 11a223b1b19a6791ad91a8cb4542de59d6fc51ab Mon Sep 17 00:00:00 2001 From: flux <25628292+fluxionary@users.noreply.github.com> Date: Mon, 24 Apr 2023 10:14:30 -0700 Subject: [PATCH] change rope recipe to avoid conflict w/ ethereal --- modules/mining/crafts.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/mining/crafts.lua b/modules/mining/crafts.lua index b81b29d..9cb4009 100644 --- a/modules/mining/crafts.lua +++ b/modules/mining/crafts.lua @@ -4,7 +4,9 @@ if ci.cotton then minetest.register_craft({ output = "cottages:rope", recipe = { - { ci.cotton, ci.cotton, ci.cotton }, + { ci.cotton, "", "" }, + { "", ci.cotton, "" }, + { "", "", ci.cotton }, }, }) end