summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorh-v-smacker <hans-von-smacker+github@gmail.com>2017-10-30 10:48:22 +0300
committerh-v-smacker <hans-von-smacker+github@gmail.com>2017-10-30 10:48:22 +0300
commite1392055961a32003fbec16c5a5081b9c7676e80 (patch)
tree87bc58d5591b356e670a5b06253c032db135cdc6
parentf346efc1b4579f412863e439886cf40e5c66d7f6 (diff)
Fix the crafting recipe conflict for hammer and steel sign
-rw-r--r--nodes_anvil.lua2
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, '' } }
})