diff options
author | hecktest <unknown> | 2021-07-10 15:58:25 +0200 |
---|---|---|
committer | Vincent Robinson <robinsonvincent89@gmail.com> | 2021-07-10 16:37:18 -0700 |
commit | 29522017a3c06f16a2fe2ef484ed3088b42748ea (patch) | |
tree | d2e57db194eb92dcaa3b3d6393f5ec5cdba6e7ee /doc | |
parent | b93bbfde2c0f6f6217ed3e358ed898049f98e448 (diff) | |
download | minetest-29522017a3c06f16a2fe2ef484ed3088b42748ea.tar.gz minetest-29522017a3c06f16a2fe2ef484ed3088b42748ea.tar.bz2 minetest-29522017a3c06f16a2fe2ef484ed3088b42748ea.zip |
Fix typo in lua_api.txt
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lua_api.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index e7ef32274..6bd0e47a1 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -4859,7 +4859,7 @@ Call these functions only at load time! * Called when an incoming mod channel message is received * You should have joined some channels to receive events. * If message comes from a server mod, `sender` field is an empty string. -* `minetest.register_on_liquid_transformed(function(post_list, node_list))` +* `minetest.register_on_liquid_transformed(function(pos_list, node_list))` * Called after liquid nodes are modified by the engine's liquid transformation process. * `pos_list` is an array of all modified positions. |