Added fortune drops to iron and gold ores

This commit is contained in:
PrairieAstronomer 2022-07-25 09:38:00 -06:00 committed by cora
parent e3f8dd158e
commit b2a73f26d7
1 changed files with 2 additions and 0 deletions

View File

@ -68,6 +68,7 @@ minetest.register_node("mcl_core:stone_with_iron", {
_mcl_blast_resistance = 3,
_mcl_hardness = 3,
_mcl_silk_touch_drop = true,
_mcl_fortune_drop = mcl_core.fortune_drop_ore,
})
@ -83,6 +84,7 @@ minetest.register_node("mcl_core:stone_with_gold", {
_mcl_blast_resistance = 3,
_mcl_hardness = 3,
_mcl_silk_touch_drop = true,
_mcl_fortune_drop = mcl_core.fortune_drop_ore,
})
local redstone_timer = 68.28