Added raw ores to iron and gold ore drops

This commit is contained in:
PrairieAstronomer 2022-07-24 21:48:20 -06:00 committed by cora
parent 5a90f34edb
commit e3f8dd158e
1 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ minetest.register_node("mcl_core:stone_with_iron", {
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=3, building_block=1, material_stone=1, blast_furnace_smeltable=1},
drop = "mcl_core:stone_with_iron",
drop = "mcl_raw_ores:raw_iron",
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 3,
_mcl_hardness = 3,
@ -78,7 +78,7 @@ minetest.register_node("mcl_core:stone_with_gold", {
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=4, building_block=1, material_stone=1, blast_furnace_smeltable=1},
drop = "mcl_core:stone_with_gold",
drop = "mcl_raw_ores:raw_gold",
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 3,
_mcl_hardness = 3,