Remove default bronze recipe.

This commit is contained in:
Novatux 2013-11-01 16:15:48 +01:00
parent f64956be4d
commit 5ed47abee6
1 changed files with 21 additions and 0 deletions

View File

@ -167,3 +167,24 @@ minetest.register_craft({
}
})
minetest.register_craftitem("technic:nothing", {
description = "",
inventory_image = "blank.png",
})
minetest.register_craft({
type = "shapeless",
output = "technic:nothing",
recipe = {
{"default:copper_ingot", "default:steel_ingot"}
}
})
if minetest.register_craft_predict then
minetest.register_craft_predict(function(itemstack, player, old_craft_grid, craft_inv)
if itemstack:get_name() == "technic:nothing" then
return ItemStack("")
end
end)
end