diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-02-22 18:55:57 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-02-22 18:55:57 +0300 |
commit | 7d2b36c0d43b33f995af1120506aea6c15df98e0 (patch) | |
tree | b9f05cf31e4fe5a137f22b1986426719066b587d | |
parent | 9a575e174e1e0c4405581526d826b3e42ea67332 (diff) |
extra recipes
-rw-r--r-- | technic/machines/HV/electric_furnace.lua | 2 | ||||
-rw-r--r-- | technic/machines/register/grinder_recipes.lua | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/technic/machines/HV/electric_furnace.lua b/technic/machines/HV/electric_furnace.lua index 57a3cd1..3d6b60a 100644 --- a/technic/machines/HV/electric_furnace.lua +++ b/technic/machines/HV/electric_furnace.lua @@ -8,7 +8,7 @@ minetest.register_craft({ output = 'technic:hv_electric_furnace', recipe = { - {'technic:stainless_steel_ingot', 'technic:mv_electric_furnace', 'technic:stainless_steel_ingot'}, + {'technic:carbon_plate', 'technic:mv_electric_furnace', 'technic:composite_plate'}, {'pipeworks:tube_1', 'technic:hv_transformer', 'pipeworks:tube_1'}, {'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'}, } diff --git a/technic/machines/register/grinder_recipes.lua b/technic/machines/register/grinder_recipes.lua index 241d2ae..496e132 100644 --- a/technic/machines/register/grinder_recipes.lua +++ b/technic/machines/register/grinder_recipes.lua @@ -27,6 +27,7 @@ local recipes = { {"default:cobble", "default:gravel"}, {"default:gravel", "default:sand"}, {"default:sandstone", "default:sand 2"}, -- reverse recipe can be found in the compressor + {"technic:stone_dust", "default:silver_sand"} } if minetest.get_modpath("ethereal") then |