Increase copper needed for blocks from 4 to 9

This commit is contained in:
Sebastian Riedel 2023-08-14 12:57:36 +02:00
parent e3bdedb4d5
commit 11d275a471
1 changed files with 4 additions and 3 deletions

View File

@ -10,8 +10,9 @@ minetest.register_craft({
minetest.register_craft({
output = "mcl_copper:block",
recipe = {
{ "mcl_copper:copper_ingot", "mcl_copper:copper_ingot" },
{ "mcl_copper:copper_ingot", "mcl_copper:copper_ingot" },
{ "mcl_copper:copper_ingot", "mcl_copper:copper_ingot", "mcl_copper:copper_ingot" },
{ "mcl_copper:copper_ingot", "mcl_copper:copper_ingot", "mcl_copper:copper_ingot" },
{ "mcl_copper:copper_ingot", "mcl_copper:copper_ingot", "mcl_copper:copper_ingot" },
},
})
@ -59,7 +60,7 @@ for _, w in ipairs(waxable_blocks) do
end
minetest.register_craft({
output = "mcl_copper:copper_ingot 4",
output = "mcl_copper:copper_ingot 9",
recipe = {
{ "mcl_copper:block" },
},