diff options
author | rubenwardy <rubenwardy@gmail.com> | 2017-03-14 06:51:07 +0000 |
---|---|---|
committer | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-03-14 07:51:07 +0100 |
commit | 84f4565e132e469f802fa139820045210aa35ba3 (patch) | |
tree | 1057645ba1504f78ca61fd959aec2f3a094474eb /doc | |
parent | 88df9fb5b6c78df9485e8bf3750e2608bd78e14c (diff) | |
download | minetest-84f4565e132e469f802fa139820045210aa35ba3.tar.gz minetest-84f4565e132e469f802fa139820045210aa35ba3.tar.bz2 minetest-84f4565e132e469f802fa139820045210aa35ba3.zip |
Add disclaimer to client_lua_api.txt (#5391)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/client_lua_api.md (renamed from doc/client_lua_api.txt) | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/doc/client_lua_api.txt b/doc/client_lua_api.md index 7440c4014..c07a1c55a 100644 --- a/doc/client_lua_api.txt +++ b/doc/client_lua_api.md @@ -1,10 +1,13 @@ -Minetest Lua Modding API Reference 0.4.15 -========================================= +Minetest Lua Client Modding API Reference 0.4.15 +================================================ * More information at <http://www.minetest.net/> * Developer Wiki: <http://dev.minetest.net/> Introduction ------------ + +**WARNING: The client API is currently unstable, and may break/change without warning.** + Content and functionality can be added to Minetest 0.4 by using Lua scripting in run-time loaded mods. @@ -732,7 +735,7 @@ Call these functions only at load time! ### Player * `minetest.get_wielded_item()` - * Returns the itemstack the local player is holding + * Returns the itemstack the local player is holding ### Misc. * `minetest.parse_json(string[, nullvalue])`: returns something |