forked from VoxeLibre/VoxeLibre
Added raw ores to iron and gold ore drops
This commit is contained in:
parent
5a90f34edb
commit
e3f8dd158e
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue