From b2a73f26d71291df0f0f591a7b679ba5063ba6e2 Mon Sep 17 00:00:00 2001 From: PrairieAstronomer Date: Mon, 25 Jul 2022 09:38:00 -0600 Subject: [PATCH] Added fortune drops to iron and gold ores --- mods/ITEMS/mcl_core/nodes_base.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mods/ITEMS/mcl_core/nodes_base.lua b/mods/ITEMS/mcl_core/nodes_base.lua index 92524d12d..773aa92a9 100644 --- a/mods/ITEMS/mcl_core/nodes_base.lua +++ b/mods/ITEMS/mcl_core/nodes_base.lua @@ -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