Improved cross-compatibility with homedecor's brass ingots. (by VanessaE)

master
RealBadAngel 2013-07-06 05:34:00 +02:00
parent 9a2cf25a49
commit 38daf802af
2 changed files with 9 additions and 9 deletions

View File

@ -29,7 +29,6 @@ register_grinder_recipe("default:copper_ingot","technic:copper_dust 1")
register_grinder_recipe("default:gold_lump","technic:gold_dust 2")
register_grinder_recipe("default:gold_ingot","technic:gold_dust 1")
--register_grinder_recipe("default:bronze_ingot","technic:bronze_dust 1") -- Dust does not exist yet
--register_grinder_recipe("home_decor:brass_ingot","technic:brass_dust 1") -- needs check for the mod
register_grinder_recipe("moreores:tin_lump","technic:tin_dust 2")
register_grinder_recipe("moreores:tin_ingot","technic:tin_dust 1")
register_grinder_recipe("moreores:silver_lump","technic:silver_dust 2")
@ -40,6 +39,7 @@ register_grinder_recipe("technic:chromium_lump","technic:chromium_dust 2")
register_grinder_recipe("technic:chromium_ingot","technic:chromium_dust 1")
register_grinder_recipe("technic:stainless_steel_ingot","stainless_steel_dust 1")
register_grinder_recipe("technic:brass_ingot","technic:brass_dust 1")
register_grinder_recipe("homedecor:brass_ingot","technic:brass_dust 1")
register_grinder_recipe("technic:zinc_lump","technic:zinc_dust 2")
register_grinder_recipe("technic:zinc_ingot","technic:zinc_dust 1")
register_grinder_recipe("technic:coal_dust","dye:black 2")

View File

@ -31,7 +31,7 @@ minetest.register_craftitem( ":technic:stainless_steel_ingot", {
inventory_image = "technic_stainless_steel_ingot.png",
})
minetest.register_craftitem( ":technic:brass_ingot", {
minetest.register_craftitem( ":group:brass_ingot", {
description = "Brass Ingot",
inventory_image = "technic_brass_ingot.png",
})
@ -85,15 +85,15 @@ minetest.register_craft({
})
minetest.register_craft({
output = "node technic:brass_block",
recipe = {{"technic:brass_ingot", "technic:brass_ingot", "technic:brass_ingot"},
{"technic:brass_ingot", "technic:brass_ingot", "technic:brass_ingot"},
{"technic:brass_ingot", "technic:brass_ingot", "technic:brass_ingot"}}
output = "node group:brass_block",
recipe = {{"group:brass_ingot", "group:brass_ingot", "group:brass_ingot"},
{"group:brass_ingot", "group:brass_ingot", "group:brass_ingot"},
{"group:brass_ingot", "group:brass_ingot", "group:brass_ingot"}}
})
minetest.register_craft({
output = "craft technic:brass_ingot 9",
recipe = {{"technic:brass_block"}}
output = "craft group:brass_ingot 9",
recipe = {{"group:brass_block"}}
})
minetest.register_craft({
@ -106,4 +106,4 @@ minetest.register_craft({
type = 'cooking',
output = "technic:chromium_ingot",
recipe = "technic:chromium_lump"
})
})