diff options
author | paramat <mat.gregory@virginmedia.com> | 2016-05-02 21:22:06 +0100 |
---|---|---|
committer | paramat <mat.gregory@virginmedia.com> | 2016-05-06 00:29:16 +0100 |
commit | a279426d126631e82f49f5b9d1d7bfb2c580396d (patch) | |
tree | 0b49f595449f4732b0a6b7959ddd572ee4b8be24 | |
parent | ae02d1eb8f4222d5cd3f885352011e4e699e6a3f (diff) | |
download | minetest-a279426d126631e82f49f5b9d1d7bfb2c580396d.tar.gz minetest-a279426d126631e82f49f5b9d1d7bfb2c580396d.tar.bz2 minetest-a279426d126631e82f49f5b9d1d7bfb2c580396d.zip |
Lua_api.txt: Add warnings of l-system lighting bug
-rw-r--r-- | doc/lua_api.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index 4b5f969d3..e8e74f674 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -2107,7 +2107,9 @@ and `minetest.auth_reload` call the authetification handler. * `max_drop`: maximum height difference to consider droppable * `algorithm`: One of `"A*_noprefetch"` (default), `"A*"`, `"Dijkstra"` * `minetest.spawn_tree (pos, {treedef})` - * spawns L-System tree at given `pos` with definition in `treedef` table + * spawns L-system tree at given `pos` with definition in `treedef` table + * Warning: L-system generation currently creates lighting bugs in the form of mapblock-sized shadows. + Often these bugs appear as subtle shadows in water. * `minetest.transforming_liquid_add(pos)` * add node to liquid update queue * `minetest.get_node_max_level(pos)` @@ -3196,6 +3198,9 @@ Registered entities L-system trees -------------- +**Warning** +L-system generation currently creates lighting bugs in the form of mapblock-sized shadows. +Often these bugs appear as subtle shadows in water. ### Tree definition |