summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authoryou <ovvv@web.de>2017-08-27 18:38:50 +0200
committerSmallJoker <SmallJoker@users.noreply.github.com>2017-08-27 18:38:50 +0200
commite09c7fceaa93ad3d7d85f657df0663f6efc70281 (patch)
tree46e3f3a1f27e88074c75c6916e431f001218d943 /doc
parentde331b18e921be1489b8cb151c628dadf3cc5ce7 (diff)
downloadminetest-e09c7fceaa93ad3d7d85f657df0663f6efc70281.tar.gz
minetest-e09c7fceaa93ad3d7d85f657df0663f6efc70281.tar.bz2
minetest-e09c7fceaa93ad3d7d85f657df0663f6efc70281.zip
core.get_objects_inside_radius: Omit removed objects (#6318)
Fixes #6294
Diffstat (limited to 'doc')
-rw-r--r--doc/lua_api.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt
index 152da5985..d8e58f2a8 100644
--- a/doc/lua_api.txt
+++ b/doc/lua_api.txt
@@ -2555,7 +2555,7 @@ and `minetest.auth_reload` call the authetification handler.
* `minetest.add_item(pos, item)`: Spawn item
* Returns `ObjectRef`, or `nil` if failed
* `minetest.get_player_by_name(name)`: Get an `ObjectRef` to a player
-* `minetest.get_objects_inside_radius(pos, radius)`
+* `minetest.get_objects_inside_radius(pos, radius)`: returns a list of ObjectRefs
* `radius`: using an euclidean metric
* `minetest.set_timeofday(val)`
* `val` is between `0` and `1`; `0` for midnight, `0.5` for midday