diff options
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'}, } }) |