diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2015-11-15 21:17:28 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2015-11-15 21:17:28 +0000 |
commit | d025784f3096bced6f0e7384b2c4d3c8a994cdac (patch) | |
tree | 004b60e5fbb1cb2eb24b90f545ea0db9c83837fb /water.lua | |
parent | bc2b58ab8eb7593bd40abb5b6bf7ad0eded8a3d4 (diff) |
Speed up specific node checks
Diffstat (limited to 'water.lua')
-rw-r--r-- | water.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -62,7 +62,7 @@ minetest.register_abm({ chance = 4, catch_up = false, action = function(pos, node) - local water = minetest.find_nodes_in_area( + local water = minetest.find_nodes_in_area_under_air( {x = pos.x - 1, y = pos.y - 1, z = pos.z - 1}, {x = pos.x + 1, y = pos.y + 1, z = pos.z + 1}, {"default:water_source", "default:river_water_source"}) |