diff options
Diffstat (limited to 'mesecons_hydroturbine')
-rw-r--r-- | mesecons_hydroturbine/init.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mesecons_hydroturbine/init.lua b/mesecons_hydroturbine/init.lua index 53dedac..7175c58 100644 --- a/mesecons_hydroturbine/init.lua +++ b/mesecons_hydroturbine/init.lua @@ -72,7 +72,6 @@ nodenames = {"mesecons_hydroturbine:hydro_turbine_off"}, local waterpos={x=pos.x, y=pos.y+1, z=pos.z} if is_flowing_water(waterpos) then minetest.set_node(pos, {name="mesecons_hydroturbine:hydro_turbine_on"}) - nodeupdate(pos) mesecon.receptor_on(pos) end end, @@ -86,7 +85,6 @@ nodenames = {"mesecons_hydroturbine:hydro_turbine_on"}, local waterpos={x=pos.x, y=pos.y+1, z=pos.z} if not is_flowing_water(waterpos) then minetest.set_node(pos, {name="mesecons_hydroturbine:hydro_turbine_off"}) - nodeupdate(pos) mesecon.receptor_off(pos) end end, |