mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-13 05:50:41 +01:00
Revert "make sure MV turbines only turn on in response to *flowing* water"
This reverts commit 8ebc1de29c
.
This commit is contained in:
parent
f3050d985d
commit
3269de8f44
|
@ -18,7 +18,7 @@ minetest.register_craft({
|
|||
|
||||
local function get_water_flow(pos)
|
||||
local node = minetest.get_node(pos)
|
||||
if minetest.get_item_group(node.name, "water") == 3 and string.find(node.name, "flowing") then
|
||||
if minetest.get_item_group(node.name, "water") == 3 then
|
||||
return node.param2 -- returns approx. water flow, if any
|
||||
end
|
||||
return 0
|
||||
|
|
Loading…
Reference in New Issue
Block a user