diff options
-rw-r--r-- | doc/client_lua_api.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/client_lua_api.txt b/doc/client_lua_api.txt index afdd2f319..1b279876c 100644 --- a/doc/client_lua_api.txt +++ b/doc/client_lua_api.txt @@ -774,6 +774,10 @@ Call these functions only at load time! * Called when recieving a spawn particle command from server * Newest functions are called first * If any function returns true, the particle does not spawn +* `minetest.register_on_receive_particlespawner(function(particleSpawner parameters))` + * Called when recieving a particlespawner from the server + * Newest functions are called first + * If any function returns true, the particlespawner will not be created on the client * `minetest.register_on_object_add(function(obj))` * Called every time an object is added * `minetest.register_on_object_properties_change(function(obj))` |