diff options
author | Perttu Ahola <celeron55@gmail.com> | 2012-04-08 14:37:12 +0300 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-04-08 14:37:12 +0300 |
commit | e29a5b11e4d6356c41806f3cc43c62d810e8cdb3 (patch) | |
tree | 006dab3072176679d1575be0bfde9d4c59f80ba7 /doc/lua_api.txt | |
parent | b58ee690a3e4744b712a9e831c99a29b3102f76e (diff) | |
download | minetest-e29a5b11e4d6356c41806f3cc43c62d810e8cdb3.tar.gz minetest-e29a5b11e4d6356c41806f3cc43c62d810e8cdb3.tar.bz2 minetest-e29a5b11e4d6356c41806f3cc43c62d810e8cdb3.zip |
EnvRef:find_nodes_in_area(minp, maxp, nodenames)
Diffstat (limited to 'doc/lua_api.txt')
-rw-r--r-- | doc/lua_api.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index e4f357f2d..9c70037a5 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -668,6 +668,8 @@ methods: - get_timeofday() - find_node_near(pos, radius, nodenames) -> pos or nil ^ nodenames: eg. {"ignore", "group:tree"} or "default:dirt" +- find_nodes_in_area(minp, maxp, nodenames) -> list of positions + ^ nodenames: eg. {"ignore", "group:tree"} or "default:dirt" - get_perlin(seeddiff, octaves, persistence, scale) ^ Return world-specific perlin noise (int(worldseed)+seeddiff) Deprecated: |