diff options
author | Perttu Ahola <celeron55@gmail.com> | 2012-07-23 08:48:55 +0300 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-07-23 08:48:55 +0300 |
commit | 16fc8b5fc2dbf8f01f143a960cb04828d6e6bc48 (patch) | |
tree | a65da4fcd613c5e28e3bc47917f042cc7a664ad2 | |
parent | fd845f27f5b3e3c6587c472be76235567a7b934d (diff) | |
download | minetest-16fc8b5fc2dbf8f01f143a960cb04828d6e6bc48.tar.gz minetest-16fc8b5fc2dbf8f01f143a960cb04828d6e6bc48.tar.bz2 minetest-16fc8b5fc2dbf8f01f143a960cb04828d6e6bc48.zip |
Update lua_api.txt a bit
-rw-r--r-- | doc/lua_api.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index ef7726e0f..2157ca8a8 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -254,9 +254,9 @@ Nodes are passed by value between Lua and the engine. They are represented by a table: {name="name", param1=num, param2=num} -param1 and param2 are 8 bit and 4 bit integers, respectively. The engine -uses them for certain automated functions. If you don't use these -functions, you can use them to store arbitrary values. +param1 and param2 are 8 bit integers. The engine uses them for certain +automated functions. If you don't use these functions, you can use them to +store arbitrary values. The functions of param1 and param2 are determined by certain fields in the node definition: |