From: Zefram Date: Mon, 4 Aug 2014 13:58:38 +0000 (+0100) Subject: Fix technic_run declaration for hydro generator X-Git-Url: http://81.2.79.47:8989/gitweb/?a=commitdiff_plain;h=fc87eca4cd523f40c68df02b68d6b5239e93cc83;p=zefram%2Fminetest%2Ftechnic.git Fix technic_run declaration for hydro generator --- diff --git a/technic/machines/LV/water_mill.lua b/technic/machines/LV/water_mill.lua index d1584fa..9088d1d 100644 --- a/technic/machines/LV/water_mill.lua +++ b/technic/machines/LV/water_mill.lua @@ -80,7 +80,7 @@ minetest.register_node("technic:water_mill", { meta:set_string("infotext", S("Hydro %s Generator"):format("LV")) meta:set_int("LV_EU_supply", 0) end, - technic_run, + technic_run = run, }) minetest.register_node("technic:water_mill_active", { @@ -93,7 +93,7 @@ minetest.register_node("technic:water_mill_active", { legacy_facedir_simple = true, sounds = default.node_sound_wood_defaults(), drop = "technic:water_mill", - technic_run, + technic_run = run, technic_disabled_machine_name = "technic:water_mill", })