mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-11 17:51:04 +00:00
Add shutdown hook interface to Lua API
Scripts can call minetest.register_on_shutdown() to register a shutdown hook. Document that minetest.register_on_shutdown() callbacks may not be run If the server crashes, it is unlikely that callbacks registered using minetest.register_on_shutdown() will be called.
This commit is contained in:
parent
ab45133ab4
commit
6c8fa83ecd
5 changed files with 27 additions and 0 deletions
|
@ -1112,6 +1112,11 @@ Server::~Server()
|
|||
{}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Execute script shutdown hooks
|
||||
*/
|
||||
scriptapi_on_shutdown(m_lua);
|
||||
|
||||
{
|
||||
JMutexAutoLock envlock(m_env_mutex);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue