aboutsummaryrefslogtreecommitdiff
path: root/doc/lua_api.txt
diff options
context:
space:
mode:
authorDS <ds.desour@proton.me>2023-03-01 09:09:29 +0100
committerGitHub <noreply@github.com>2023-03-01 09:09:29 +0100
commit514bf3582cd8c46176cba2fc0125fbb76c6b33a9 (patch)
tree4af54b6e3135cf0282c99881be7dac2144ef76d8 /doc/lua_api.txt
parentd6be6682ec69706b765ab51863bcd5805a7cbd7d (diff)
downloadminetest-514bf3582cd8c46176cba2fc0125fbb76c6b33a9.tar.xz
Document that item_image_button[] name is non-optional
Diffstat (limited to 'doc/lua_api.txt')
-rw-r--r--doc/lua_api.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt
index a16790eee..0de5d8c7a 100644
--- a/doc/lua_api.txt
+++ b/doc/lua_api.txt
@@ -2726,6 +2726,7 @@ Elements
### `item_image_button[<X>,<Y>;<W>,<H>;<item name>;<name>;<label>]`
* `item name` is the registered name of an item/node
+* `name` is non-optional and must be unique, or else tooltips are broken.
* The item description will be used as the tooltip. This can be overridden with
a tooltip element.
@@ -7801,7 +7802,7 @@ Player properties need to be saved manually.
-- If `rotate = false`, the selection box will not rotate with the object itself, remaining fixed to the axes.
-- If `rotate = true`, it will match the object's rotation and any attachment rotations.
-- Raycasts use the selection box and object's rotation, but do *not* obey attachment rotations.
-
+
pointable = true,
-- Whether the object can be pointed at
@@ -9356,10 +9357,10 @@ description fields is shown when the "/help" chatcommand is issued.
-- the format and see [Privileges] for an overview of privileges.
func = function(name, param),
- -- Called when command is run.
+ -- Called when command is run.
-- * `name` is the name of the player who issued the command.
-- * `param` is a string with the full arguments to the command.
- -- Returns a boolean for success and a string value.
+ -- Returns a boolean for success and a string value.
-- The string is shown to the issuing player upon exit of `func` or,
-- if `func` returns `false` and no string, the help message is shown.
}