forked from VoxeLibre/VoxeLibre
Copper blocks stonecutter recipes
This commit is contained in:
parent
6ebd3ccb7d
commit
0c7b4d473c
|
@ -59,6 +59,12 @@ for _, w in ipairs(waxable_blocks) do
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local cuttable_blocks = { "block", "waxed_block", "block_exposed", "waxed_block_exposed", "block_weathered", "waxed_block_weathered", "block_oxidized", "waxed_block_oxidized" }
|
||||||
|
|
||||||
|
for _, w in ipairs(cuttable_blocks) do
|
||||||
|
mcl_stonecutter.register_recipe("mcl_copper:"..w, "mcl_copper:"..w.."_cut")
|
||||||
|
end
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mcl_copper:copper_ingot 9",
|
output = "mcl_copper:copper_ingot 9",
|
||||||
recipe = {
|
recipe = {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
name = mcl_copper
|
name = mcl_copper
|
||||||
author = NO11
|
author = NO11
|
||||||
depends = mcl_core, mcl_sounds, mcl_stairs, mcl_util, mcl_oxidation
|
depends = mcl_core, mcl_sounds, mcl_stairs, mcl_util, mcl_oxidation, mcl_stonecutter
|
||||||
description = Adds Copper Ore, blocks and items.
|
description = Adds Copper Ore, blocks and items.
|
||||||
|
|
Loading…
Reference in New Issue