From: Maciej Kasatkin Date: Sun, 2 Sep 2012 16:20:35 +0000 (+0200) Subject: Small fix blockin the geothermal X-Git-Url: http://81.2.79.47:8989/gitweb/?a=commitdiff_plain;h=d455791cfb2d93e3625c1db103f069fa11c3d566;p=zefram%2Fminetest%2Ftechnic.git Small fix blockin the geothermal --- diff --git a/water_mill.lua b/water_mill.lua index ad0738c..6e0120d 100644 --- a/water_mill.lua +++ b/water_mill.lua @@ -74,17 +74,17 @@ minetest.register_abm({ local load_step=0 pos.x=pos.x+1 - local check=check_node_around (pos) + local check=check_node_around_mill (pos) if check==1 then water_nodes=water_nodes+1 end pos.x=pos.x-2 - check=check_node_around (pos) + check=check_node_around_mill (pos) if check==1 then water_nodes=water_nodes+1 end pos.x=pos.x+1 pos.z=pos.z+1 - check=check_node_around (pos) + check=check_node_around_mill (pos) if check==1 then water_nodes=water_nodes+1 end pos.z=pos.z-2 - check=check_node_around (pos) + check=check_node_around_mill (pos) if check==1 then water_nodes=water_nodes+1 end pos.z=pos.z+1 @@ -121,7 +121,7 @@ minetest.register_abm({ end }) -function check_node_around (pos) +function check_node_around_mill (pos) local node=minetest.env:get_node(pos) if node.name=="default:water_flowing" then return 1 end return 0