From a07e2e706e718348a5ba183db2e686ad36f7b18f Mon Sep 17 00:00:00 2001 From: Sokomine Date: Sun, 26 Jul 2015 05:54:37 +0200 Subject: added missing textures; made indigrents for craft receipes configurable; added compatibility for realtest; added wool in case no wool is installed; other minor tweaks --- nodes_anvil.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'nodes_anvil.lua') diff --git a/nodes_anvil.lua b/nodes_anvil.lua index e04f92f..e6c89ce 100644 --- a/nodes_anvil.lua +++ b/nodes_anvil.lua @@ -208,9 +208,9 @@ minetest.register_node("cottages:anvil", { minetest.register_craft({ output = "cottages:anvil", recipe = { - {'default:steel_ingot','default:steel_ingot','default:steel_ingot'}, - {'', 'default:steel_ingot','' }, - {'default:steel_ingot','default:steel_ingot','default:steel_ingot'} }, + {cottages.craftitem_steel,cottages.craftitem_steel,cottages.craftitem_steel}, + {'', cottages.craftitem_steel,'' }, + {cottages.craftitem_steel,cottages.craftitem_steel,cottages.craftitem_steel} }, }) @@ -237,8 +237,8 @@ end minetest.register_craft({ output = "cottages:hammer", recipe = { - {'default:steel_ingot','default:steel_ingot','default:steel_ingot'}, - {'default:steel_ingot','default:steel_ingot','default:steel_ingot'}, - {'', 'default:stick', '' } } + {cottages.craftitem_steel,cottages.craftitem_steel,cottages.craftitem_steel}, + {cottages.craftitem_steel,cottages.craftitem_steel,cottages.craftitem_steel}, + {'', cottages.craftitem_stick, '' } } }) -- cgit v1.2.3