From e1392055961a32003fbec16c5a5081b9c7676e80 Mon Sep 17 00:00:00 2001 From: h-v-smacker Date: Mon, 30 Oct 2017 10:48:22 +0300 Subject: [PATCH] Fix the crafting recipe conflict for hammer and steel sign --- nodes_anvil.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes_anvil.lua b/nodes_anvil.lua index 4a6f060..53a8b2e 100644 --- a/nodes_anvil.lua +++ b/nodes_anvil.lua @@ -297,7 +297,7 @@ minetest.register_craft({ output = "cottages:hammer", recipe = { {cottages.craftitem_steel,cottages.craftitem_steel,cottages.craftitem_steel}, - {cottages.craftitem_steel,cottages.craftitem_steel,cottages.craftitem_steel}, + {cottages.craftitem_steel,cottages.craftitem_stick,cottages.craftitem_steel}, {'', cottages.craftitem_stick, '' } } })