Add more information about how get_node_light works.
authorRobert Zenz <Robert.Zenz@bonsaimind.org>
Mon, 7 Sep 2015 16:51:45 +0000 (18:51 +0200)
committerest31 <MTest31@outlook.com>
Tue, 8 Sep 2015 19:14:56 +0000 (21:14 +0200)
doc/lua_api.txt

index 5372cb8341b9de9ef6de3f8dca677512a29b190b..b07d046c4262069cfec2b61c7bbf30a16fa8e11c 100644 (file)
@@ -1914,9 +1914,13 @@ and `minetest.auth_reload` call the authetification handler.
     * Returns `{name="ignore", ...}` for unloaded area
 * `minetest.get_node_or_nil(pos)`
     * Returns `nil` for unloaded area
-* `minetest.get_node_light(pos, timeofday)` returns a number between `0` and `15` or `nil`
+* `minetest.get_node_light(pos, timeofday)`
+    * Gets the light value at the given position. Note that the light value
+      "inside" the node at the given position is returned, so you usually want
+      to get the light value of a neighbor.
+    * `pos`: The position where to measure the light.
     * `timeofday`: `nil` for current time, `0` for night, `0.5` for day
-
+    * Returns a number between `0` and `15` or `nil`
 * `minetest.place_node(pos, node)`
     * Place node with the same effects that a player would cause
 * `minetest.dig_node(pos)`