Deprecate sscsm.global_exists().

This function will probably continue existing as it is used internally.
This commit is contained in:
luk3yx 2020-09-08 15:15:48 +12:00
parent 6e6cf438aa
commit 2800ad2853
1 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,6 @@ above this size limit it could still work.
SSCSMs can access most functions on [client_lua_api.txt](https://github.com/minetest/minetest/blob/master/doc/client_lua_api.txt), as well as a separate `sscsm` namespace: SSCSMs can access most functions on [client_lua_api.txt](https://github.com/minetest/minetest/blob/master/doc/client_lua_api.txt), as well as a separate `sscsm` namespace:
- `sscsm.global_exists(name)`: The same as `minetest.global_exists`.
- `sscsm.register_on_mods_loaded(callback)`: Runs the callback once all SSCSMs - `sscsm.register_on_mods_loaded(callback)`: Runs the callback once all SSCSMs
are loaded. are loaded.
- `sscsm.register_chatcommand(...)`: Similar to - `sscsm.register_chatcommand(...)`: Similar to
@ -151,7 +150,8 @@ SSCSMs can access most functions on [client_lua_api.txt](https://github.com/mine
- `sscsm.register_on_com_receive(channel, function(msg))`: Registers a - `sscsm.register_on_com_receive(channel, function(msg))`: Registers a
function to be called when a message on `channel` is received from the function to be called when a message on `channel` is received from the
server. server.
- `sscsm.global_exists(name)`: Deprecated, use `minetest.global_exists(name)`
instead.
To communicate with the server-side mods, it is possible to open a mod To communicate with the server-side mods, it is possible to open a mod
channel. channel.