diff options
author | Maciej Kasatkin <mk@realbadangel.pl> | 2012-10-09 11:02:29 +0200 |
---|---|---|
committer | Maciej Kasatkin <mk@realbadangel.pl> | 2012-10-09 11:02:29 +0200 |
commit | eabde42244a4f541c13ee8f39b3542fb26d8af9b (patch) | |
tree | ce8d367f434ce0d3a8684227396a460529a21efc /ores.lua | |
parent | ef174a7deeb362e8519b25b09c7cf45730468d24 (diff) |
several fixes, brass added
Diffstat (limited to 'ores.lua')
-rw-r--r-- | ores.lua | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -55,10 +55,6 @@ minetest.register_craft({ recipe = "technic:chromium_lump" }) -minetest.register_craftitem( "technic:stainless_steel_ingot", { - description = "Stainless Steel Ingot", - inventory_image = "technic_stainless_steel_ingot.png", -}) minetest.register_node( "technic:mineral_zinc", { description = "Zinc Ore", @@ -79,6 +75,16 @@ minetest.register_craftitem( "technic:zinc_ingot", { inventory_image = "technic_zinc_ingot.png", }) +minetest.register_craftitem( "technic:stainless_steel_ingot", { + description = "Stainless Steel Ingot", + inventory_image = "technic_stainless_steel_ingot.png", +}) + +minetest.register_craftitem( "technic:brass_ingot", { + description = "Brass Ingot", + inventory_image = "technic_brass_ingot.png", +}) + minetest.register_craft({ type = 'cooking', output = "technic:zinc_ingot", |