Default/trees: Faster 'is snow nearby' function

Use 'find node near' instead of 'find nodes in area'
This commit is contained in:
tenplus1 2016-08-10 14:03:18 +01:00 committed by paramat
parent 2ecbc43a7a
commit 1b745d401d
1 changed files with 2 additions and 4 deletions

View File

@ -27,10 +27,8 @@ end
-- 'is snow nearby' function
local function is_snow_nearby(pos)
return #minetest.find_nodes_in_area(
{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:snow", "default:snowblock", "default:dirt_with_snow"}) > 0
return minetest.find_node_near(pos, 1,
{"default:snow", "default:snowblock", "default:dirt_with_snow"})
end