diff options
author | kwolekr <kwolekr@minetest.net> | 2015-05-05 14:30:46 -0400 |
---|---|---|
committer | kwolekr <kwolekr@minetest.net> | 2015-05-05 16:21:59 -0400 |
commit | b785577f03d00c83236782876def4c900edbba4e (patch) | |
tree | 389f3baa9e4b3d6abcab1d752a248bcdc933b52d /doc | |
parent | b45df9d6a73d97671cbdd38d77e9b153a80fb458 (diff) | |
download | minetest-b785577f03d00c83236782876def4c900edbba4e.tar.gz minetest-b785577f03d00c83236782876def4c900edbba4e.tar.bz2 minetest-b785577f03d00c83236782876def4c900edbba4e.zip |
Add core.find_nodes_with_meta() script API
Diffstat (limited to 'doc')
-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 6325ed35d..c01ef208c 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -1871,6 +1871,8 @@ and `minetest.auth_reload` call the authetification handler. * `minetest.punch_node(pos)` * Punch node with the same effects that a player would cause +* `minetest.find_nodes_with_meta(pos1, pos2)` + * Get a table of positions of nodes that have metadata within a region {pos1, pos2} * `minetest.get_meta(pos)` * Get a `NodeMetaRef` at that position * `minetest.get_node_timer(pos)` |