Copper blocks stonecutter recipes

This commit is contained in:
the-real-herowl 2023-11-13 21:19:09 +01:00 committed by the-real-herowl
parent 6ebd3ccb7d
commit 0c7b4d473c
2 changed files with 7 additions and 1 deletions

View File

@ -59,6 +59,12 @@ for _, w in ipairs(waxable_blocks) do
})
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({
output = "mcl_copper:copper_ingot 9",
recipe = {

View File

@ -1,4 +1,4 @@
name = mcl_copper
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.