Change how bronze is made, fix #61

This commit is contained in:
KaadmY 2017-05-18 08:42:31 -07:00
parent 68a51a6e6a
commit 10292b7282
8 changed files with 17 additions and 3 deletions

View File

@ -100,10 +100,10 @@ crafting.register_craft(
crafting.register_craft(
{
output = "default:lump_bronze 2",
output = "default:ingot_bronze 2",
items = {
"default:lump_tin 2",
"default:lump_copper 5",
"default:ingot_tin 2",
"default:ingot_copper 5",
}
})

View File

@ -110,6 +110,20 @@ minetest.register_craftitem(
inventory_image = "default_ingot_carbon_steel.png",
})
minetest.register_craftitem(
"default:ingot_copper",
{
description = "Copper Ingot",
inventory_image = "default_ingot_copper.png",
})
minetest.register_craftitem(
"default:ingot_tin",
{
description = "Tin Ingot",
inventory_image = "default_ingot_tin.png",
})
minetest.register_craftitem(
"default:ingot_bronze",
{

Binary file not shown.

After

Width:  |  Height:  |  Size: 296 B

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 461 B

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 484 B

After

Width:  |  Height:  |  Size: 484 B