diff --git a/technic/machines/HV/forcefield.lua b/technic/machines/HV/forcefield.lua index 1613a49..8e3a37c 100644 --- a/technic/machines/HV/forcefield.lua +++ b/technic/machines/HV/forcefield.lua @@ -317,7 +317,7 @@ minetest.register_node("technic:forcefield_emitter_off", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) minetest.register_node("technic:forcefield_emitter_on", { @@ -353,7 +353,7 @@ minetest.register_node("technic:forcefield_emitter_on", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) minetest.register_node("technic:forcefield", { diff --git a/technic/machines/HV/nuclear_reactor.lua b/technic/machines/HV/nuclear_reactor.lua index 78d15cc..e16b371 100644 --- a/technic/machines/HV/nuclear_reactor.lua +++ b/technic/machines/HV/nuclear_reactor.lua @@ -440,7 +440,7 @@ minetest.register_node("technic:hv_nuclear_reactor_core", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) minetest.register_node("technic:hv_nuclear_reactor_core_active", { @@ -494,7 +494,7 @@ minetest.register_node("technic:hv_nuclear_reactor_core_active", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) technic.register_machine("HV", "technic:hv_nuclear_reactor_core", technic.producer) diff --git a/technic/machines/HV/quarry.lua b/technic/machines/HV/quarry.lua index 153a51e..c57a7c8 100644 --- a/technic/machines/HV/quarry.lua +++ b/technic/machines/HV/quarry.lua @@ -293,7 +293,7 @@ minetest.register_node("technic:quarry", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) technic.register_machine("HV", "technic:quarry", technic.receiver) diff --git a/technic/machines/LV/geothermal.lua b/technic/machines/LV/geothermal.lua index dee913f..f4cf0e9 100644 --- a/technic/machines/LV/geothermal.lua +++ b/technic/machines/LV/geothermal.lua @@ -100,7 +100,7 @@ minetest.register_node("technic:geothermal", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) minetest.register_node("technic:geothermal_active", { @@ -117,7 +117,7 @@ minetest.register_node("technic:geothermal_active", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) technic.register_machine("LV", "technic:geothermal", technic.producer) diff --git a/technic/machines/LV/lamp.lua b/technic/machines/LV/lamp.lua index cefaec7..e6e6269 100644 --- a/technic/machines/LV/lamp.lua +++ b/technic/machines/LV/lamp.lua @@ -30,7 +30,7 @@ minetest.register_node("technic:dummy_light_source", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) @@ -122,7 +122,7 @@ ndef = { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + } for k, v in pairs(common_fields) do @@ -145,7 +145,7 @@ ndef = { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + } for k, v in pairs(common_fields) do diff --git a/technic/machines/LV/led.lua b/technic/machines/LV/led.lua index b532dd2..fc4fa44 100644 --- a/technic/machines/LV/led.lua +++ b/technic/machines/LV/led.lua @@ -58,7 +58,7 @@ ndef = { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + } for k, v in pairs(common_fields) do @@ -80,7 +80,7 @@ ndef = { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + } for k, v in pairs(common_fields) do diff --git a/technic/machines/LV/music_player.lua b/technic/machines/LV/music_player.lua index e2d2761..66168de 100644 --- a/technic/machines/LV/music_player.lua +++ b/technic/machines/LV/music_player.lua @@ -128,7 +128,7 @@ minetest.register_node("technic:music_player", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) technic.register_machine("LV", "technic:music_player", technic.receiver) diff --git a/technic/machines/LV/solar_panel.lua b/technic/machines/LV/solar_panel.lua index f7684bf..083ef54 100644 --- a/technic/machines/LV/solar_panel.lua +++ b/technic/machines/LV/solar_panel.lua @@ -69,7 +69,7 @@ minetest.register_node("technic:solar_panel", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) technic.register_machine("LV", "technic:solar_panel", technic.producer) diff --git a/technic/machines/LV/water_mill.lua b/technic/machines/LV/water_mill.lua index 8461562..66aaab8 100644 --- a/technic/machines/LV/water_mill.lua +++ b/technic/machines/LV/water_mill.lua @@ -89,7 +89,7 @@ minetest.register_node("technic:water_mill", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) minetest.register_node("technic:water_mill_active", { @@ -108,7 +108,7 @@ minetest.register_node("technic:water_mill_active", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) technic.register_machine("LV", "technic:water_mill", technic.producer) diff --git a/technic/machines/MV/hydro_turbine.lua b/technic/machines/MV/hydro_turbine.lua index d006b29..4a879cb 100644 --- a/technic/machines/MV/hydro_turbine.lua +++ b/technic/machines/MV/hydro_turbine.lua @@ -87,7 +87,7 @@ minetest.register_node("technic:hydro_turbine", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) minetest.register_node("technic:hydro_turbine_active", { @@ -106,7 +106,7 @@ minetest.register_node("technic:hydro_turbine_active", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) technic.register_machine("MV", "technic:hydro_turbine", technic.producer) diff --git a/technic/machines/MV/power_radiator.lua b/technic/machines/MV/power_radiator.lua index b9d6a25..87c042a 100644 --- a/technic/machines/MV/power_radiator.lua +++ b/technic/machines/MV/power_radiator.lua @@ -147,7 +147,7 @@ minetest.register_node("technic:power_radiator", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) minetest.register_abm({ diff --git a/technic/machines/MV/tool_workshop.lua b/technic/machines/MV/tool_workshop.lua index afd0822..b8c3a12 100644 --- a/technic/machines/MV/tool_workshop.lua +++ b/technic/machines/MV/tool_workshop.lua @@ -123,7 +123,7 @@ minetest.register_node("technic:tool_workshop", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) technic.register_machine("MV", "technic:tool_workshop", technic.receiver) diff --git a/technic/machines/MV/wind_mill.lua b/technic/machines/MV/wind_mill.lua index 3a82574..7dc7ab2 100644 --- a/technic/machines/MV/wind_mill.lua +++ b/technic/machines/MV/wind_mill.lua @@ -30,7 +30,7 @@ minetest.register_node("technic:wind_mill_frame", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) local function check_wind_mill(pos) @@ -97,7 +97,7 @@ minetest.register_node("technic:wind_mill", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) technic.register_machine("MV", "technic:wind_mill", technic.producer) diff --git a/technic/machines/other/anchor.lua b/technic/machines/other/anchor.lua index 4ed5a96..d3c1437 100644 --- a/technic/machines/other/anchor.lua +++ b/technic/machines/other/anchor.lua @@ -117,5 +117,5 @@ minetest.register_node("technic:admin_anchor", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) diff --git a/technic/machines/other/coal_alloy_furnace.lua b/technic/machines/other/coal_alloy_furnace.lua index 4e2524b..8976446 100644 --- a/technic/machines/other/coal_alloy_furnace.lua +++ b/technic/machines/other/coal_alloy_furnace.lua @@ -53,7 +53,7 @@ minetest.register_node("technic:coal_alloy_furnace", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) minetest.register_node("technic:coal_alloy_furnace_active", { @@ -74,7 +74,7 @@ minetest.register_node("technic:coal_alloy_furnace_active", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) minetest.register_abm({ diff --git a/technic/machines/other/constructor.lua b/technic/machines/other/constructor.lua index 6549838..04f849f 100644 --- a/technic/machines/other/constructor.lua +++ b/technic/machines/other/constructor.lua @@ -183,7 +183,7 @@ local function make_constructor(mark, length) _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) minetest.register_node("technic:constructor_mk"..mark.."_on", { @@ -206,7 +206,7 @@ local function make_constructor(mark, length) _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) end diff --git a/technic/machines/other/frames.lua b/technic/machines/other/frames.lua index 200aa58..74b7e6d 100644 --- a/technic/machines/other/frames.lua +++ b/technic/machines/other/frames.lua @@ -376,7 +376,7 @@ for zp = 0, 1 do _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) end diff --git a/technic/machines/power_monitor.lua b/technic/machines/power_monitor.lua index e207be6..c25b401 100644 --- a/technic/machines/power_monitor.lua +++ b/technic/machines/power_monitor.lua @@ -36,7 +36,7 @@ minetest.register_node("technic:power_monitor",{ _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) minetest.register_abm({ diff --git a/technic/machines/supply_converter.lua b/technic/machines/supply_converter.lua index f42e23d..63f33c3 100644 --- a/technic/machines/supply_converter.lua +++ b/technic/machines/supply_converter.lua @@ -221,7 +221,7 @@ minetest.register_node("technic:supply_converter", { _mcl_hardness = 3, _mcl_blast_resistance = 3, _mcl_silk_touch_drop = true, - _mcl_fortune_drop = mcl_core.fortune_drop_ore + }) minetest.register_craft({