Fix technic_run declaration for hydro generator

This commit is contained in:
Zefram 2014-08-04 14:58:38 +01:00
parent 8275091347
commit fc87eca4cd
1 changed files with 2 additions and 2 deletions

View File

@ -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",
})