summaryrefslogtreecommitdiff
path: root/technic/machines/LV/alloy_furnace.lua
diff options
context:
space:
mode:
authorZefram <zefram@fysh.org>2014-07-06 17:13:11 +0100
committerNovatux <nathanael.courant@laposte.net>2014-07-07 15:15:30 +0200
commitd9fc1569600f9b9108612ea97d38be731dfee2a7 (patch)
tree7420da01e58d1a1466cfd07a73c090df4b6ab70a /technic/machines/LV/alloy_furnace.lua
parentc26f45c962a979a5d6d820fcde4376e10fc9e9d7 (diff)
Use machine casing in most machine recipes
Diffstat (limited to 'technic/machines/LV/alloy_furnace.lua')
-rw-r--r--technic/machines/LV/alloy_furnace.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/technic/machines/LV/alloy_furnace.lua b/technic/machines/LV/alloy_furnace.lua
index f0e2bc5..e267f44 100644
--- a/technic/machines/LV/alloy_furnace.lua
+++ b/technic/machines/LV/alloy_furnace.lua
@@ -4,9 +4,9 @@
minetest.register_craft({
output = 'technic:lv_alloy_furnace',
recipe = {
- {'default:brick', 'default:brick', 'default:brick'},
- {'default:brick', '', 'default:brick'},
- {'technic:cast_iron_ingot', 'default:copper_ingot', 'technic:cast_iron_ingot'},
+ {'default:brick', 'default:brick', 'default:brick'},
+ {'default:brick', 'technic:machine_casing', 'default:brick'},
+ {'default:brick', 'default:copper_ingot', 'default:brick'},
}
})