diff options
author | Rui <rui.minetest@gmail.com> | 2017-01-10 04:39:45 +0900 |
---|---|---|
committer | Ner'zhul <nerzhul@users.noreply.github.com> | 2017-01-09 20:39:45 +0100 |
commit | ec30d49e026af2d0cb8329eb66aec48d12e79839 (patch) | |
tree | 65a96127eb50412dfbd6f5d120809a58ff510ec7 /doc | |
parent | 8e7449e09253e138716d8dbad6a2ab5c6e089e28 (diff) | |
download | minetest-ec30d49e026af2d0cb8329eb66aec48d12e79839.tar.gz minetest-ec30d49e026af2d0cb8329eb66aec48d12e79839.tar.bz2 minetest-ec30d49e026af2d0cb8329eb66aec48d12e79839.zip |
Add staticdata parameter to add_entity (#5009)
* Add staticdata parameter to add_entity
* Add add_entity_with_staticdata to core.features
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lua_api.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index d05db9d49..fc0f8e1fc 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -2173,7 +2173,7 @@ and `minetest.auth_reload` call the authetification handler. * `minetest.get_node_timer(pos)` * Get `NodeTimerRef` -* `minetest.add_entity(pos, name)`: Spawn Lua-defined entity at position +* `minetest.add_entity(pos, name, [staticdata])`: Spawn Lua-defined entity at position * Returns `ObjectRef`, or `nil` if failed * `minetest.add_item(pos, item)`: Spawn item * Returns `ObjectRef`, or `nil` if failed |