mirror of
https://github.com/minetest-mods/technic.git
synced 2025-07-01 15:50:39 +02:00
several fixes, brass added
This commit is contained in:
14
ores.lua
14
ores.lua
@ -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",
|
||||
|
Reference in New Issue
Block a user