diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2017-10-30 10:48:22 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2017-10-30 10:48:22 +0300 |
commit | e1392055961a32003fbec16c5a5081b9c7676e80 (patch) | |
tree | 87bc58d5591b356e670a5b06253c032db135cdc6 | |
parent | f346efc1b4579f412863e439886cf40e5c66d7f6 (diff) |
Fix the crafting recipe conflict for hammer and steel sign
-rw-r--r-- | nodes_anvil.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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, '' } } }) |