From 7ad5f7c66e1c5b97245e004700e50a0ee2532275 Mon Sep 17 00:00:00 2001 From: CableGuy67 Date: Thu, 24 Mar 2022 17:44:09 +0000 Subject: [PATCH 1/2] Incorrect fortune effect on a non-ore This Easter Egg had almost a year. Time to put it to bed. --- mods/ITEMS/mcl_nether/init.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/mods/ITEMS/mcl_nether/init.lua b/mods/ITEMS/mcl_nether/init.lua index 35da05553..90bdaa800 100644 --- a/mods/ITEMS/mcl_nether/init.lua +++ b/mods/ITEMS/mcl_nether/init.lua @@ -78,7 +78,6 @@ minetest.register_node("mcl_nether:netheriteblock", { _mcl_blast_resistance = 1200, _mcl_hardness = 50, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore }) -- For eternal fire on top of netherrack and magma blocks From 9e72966f91eddb5af98447a6529c8c2bc0f37bac Mon Sep 17 00:00:00 2001 From: CableGuy67 Date: Thu, 24 Mar 2022 18:42:45 +0000 Subject: [PATCH 2/2] missed the comma on the previous line When removing the last line the previous comma wasn't removed. --- mods/ITEMS/mcl_nether/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ITEMS/mcl_nether/init.lua b/mods/ITEMS/mcl_nether/init.lua index 90bdaa800..d5201e682 100644 --- a/mods/ITEMS/mcl_nether/init.lua +++ b/mods/ITEMS/mcl_nether/init.lua @@ -77,7 +77,7 @@ minetest.register_node("mcl_nether:netheriteblock", { sounds = mcl_sounds.node_sound_stone_defaults(), _mcl_blast_resistance = 1200, _mcl_hardness = 50, - _mcl_silk_touch_drop = true, + _mcl_silk_touch_drop = true }) -- For eternal fire on top of netherrack and magma blocks