diff options
author | Maciej Kasatkin <mk@realbadangel.pl> | 2012-10-30 00:56:24 +0100 |
---|---|---|
committer | Maciej Kasatkin <mk@realbadangel.pl> | 2012-10-30 00:56:24 +0100 |
commit | 98b2f8dbbfb2149cf5aded15341b1daf7c62526b (patch) | |
tree | 62d52a1df7a7df77495c0df4b0572954144f6ce7 /alloy_furnace.lua | |
parent | 0bd7a8726248a1e99d3c0ee35783985b6e8e8e33 (diff) |
recipe changes
Diffstat (limited to 'alloy_furnace.lua')
-rw-r--r-- | alloy_furnace.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/alloy_furnace.lua b/alloy_furnace.lua index 1d2a1aa..160947d 100644 --- a/alloy_furnace.lua +++ b/alloy_furnace.lua @@ -36,9 +36,9 @@ minetest.register_alias("alloy_furnace", "technic:alloy_furnace") minetest.register_craft({ output = 'technic:alloy_furnace', recipe = { - {'default:stone', 'default:stone', 'default:stone'}, - {'default:stone', '', 'default:stone'}, - {'moreores:gold_ingot', 'moreores:copper_ingot', 'moreores:gold_ingot'}, + {'default:brick', 'default:brick', 'default:brick'}, + {'default:brick', '', 'default:brick'}, + {'default:steel_ingot', 'moreores:copper_ingot', 'default:steel_ingot'}, } }) |