forked from VoxeLibre/VoxeLibre
Increase copper needed for blocks from 4 to 9
This commit is contained in:
parent
e3bdedb4d5
commit
11d275a471
|
@ -10,8 +10,9 @@ minetest.register_craft({
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mcl_copper:block",
|
output = "mcl_copper:block",
|
||||||
recipe = {
|
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
|
end
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mcl_copper:copper_ingot 4",
|
output = "mcl_copper:copper_ingot 9",
|
||||||
recipe = {
|
recipe = {
|
||||||
{ "mcl_copper:block" },
|
{ "mcl_copper:block" },
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue