mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-04 23:31:05 +01:00
Merge pull request 'Increase copper needed for blocks from 4 to 9' (#3887) from basxto/MineClonXX:copper into master
Reviewed-on: https://git.minetest.land/MineClone2/MineClone2/pulls/3887
This commit is contained in:
commit
4853018bb0
1 changed files with 4 additions and 3 deletions
|
@ -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 a new issue