Clarified what get_node does.

This commit is contained in:
Robert Zenz 2016-01-07 23:16:56 +01:00 committed by paramat
parent 95c1b66722
commit 386d190e09
1 changed files with 4 additions and 2 deletions

View File

@ -1958,9 +1958,11 @@ and `minetest.auth_reload` call the authetification handler.
* `minetest.remove_node(pos)` * `minetest.remove_node(pos)`
* Equivalent to `set_node(pos, "air")` * Equivalent to `set_node(pos, "air")`
* `minetest.get_node(pos)` * `minetest.get_node(pos)`
* Returns `{name="ignore", ...}` for unloaded area * Returns the node at the given position as table in the format
`{name="node_name", param1=0, param2=0}`, returns `{name="ignore", param1=0, param2=0}`
for unloaded areas.
* `minetest.get_node_or_nil(pos)` * `minetest.get_node_or_nil(pos)`
* Returns `nil` for unloaded area * Same as `get_node` but returns `nil` for unloaded areas.
* `minetest.get_node_light(pos, timeofday)` * `minetest.get_node_light(pos, timeofday)`
* Gets the light value at the given position. Note that the light value * 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 "inside" the node at the given position is returned, so you usually want