diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lua_api.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index d5797d171..b6168c34c 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -766,6 +766,11 @@ minetest.register_on_joinplayer(func(ObjectRef)) minetest.register_on_leaveplayer(func(ObjectRef)) ^ Called when a player leaves the game minetest.register_on_chat_message(func(name, message)) +^ Called always when a player says something +minetest.register_on_player_receive_fields(func(player, formname, fields)) +^ Called when a button is pressed in player's inventory form +^ Newest functions are called first +^ If function returns true, remaining functions are not called Other registration functions: minetest.register_chatcommand(cmd, chatcommand definition) |