Stonecutter yields 4 copper grates

This commit is contained in:
cora 2024-11-29 02:28:16 +01:00 committed by ryvnf
parent d1a8b217a4
commit 6b021caa26
2 changed files with 2 additions and 1 deletions

View File

@ -104,7 +104,7 @@ for n, desc in pairs(n_desc) do
tiles = {"mcl_copper"..(n == "" and "_block" or n) .."_grate.png"},
use_texture_alpha = "blend",
is_ground_content = false,
groups = {pickaxey = 2, building_block = 1 },
groups = {pickaxey = 2, building_block = 1, copper_grate = 1, },
sounds = mcl_sounds.node_sound_metal_defaults(),
_mcl_blast_resistance = 6,
_mcl_hardness = 3,

View File

@ -11,6 +11,7 @@ local F = minetest.formspec_escape
local recipe_yield = { --maps itemgroup to the respective recipe yield, default is 1
["slab"] = 2,
["cut_copper"] = 4,
["copper_grate"] = 4,
}
local recipes = {}