mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-11 17:51:04 +00:00
Kick players when shutting down server and there is a crash due to a Lua stack exception
This commit is contained in:
parent
655fc6010f
commit
f9dbec6edf
3 changed files with 17 additions and 2 deletions
|
@ -394,10 +394,13 @@ Server::~Server()
|
|||
// Execute script shutdown hooks
|
||||
m_script->on_shutdown();
|
||||
|
||||
infostream<<"Server: Saving players"<<std::endl;
|
||||
infostream << "Server: Saving players" << std::endl;
|
||||
m_env->saveLoadedPlayers();
|
||||
|
||||
infostream<<"Server: Saving environment metadata"<<std::endl;
|
||||
infostream << "Server: kick players" << std::endl;
|
||||
m_env->kickAllPlayers("Server shutting down...");
|
||||
|
||||
infostream << "Server: Saving environment metadata" << std::endl;
|
||||
m_env->saveMeta();
|
||||
}
|
||||
|
||||
|
@ -499,6 +502,7 @@ void Server::step(float dtime)
|
|||
throw ServerError(async_err);
|
||||
}
|
||||
else {
|
||||
m_env->kickAllPlayers("The server has crashed. Disconnecting all players. Please reconnect soon...");
|
||||
errorstream << "UNRECOVERABLE error occurred. Stopping server. "
|
||||
<< "Please fix the following error:" << std::endl
|
||||
<< async_err << std::endl;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue