mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-14 00:55:20 +02:00
Optional reconnect functionality
Enable the server to request the client to reconnect. This can be done with the now extended minetest.request_shutdown([reason], [reconnect]) setting.
This commit is contained in:
@@ -30,7 +30,9 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
// request_shutdown()
|
||||
int ModApiServer::l_request_shutdown(lua_State *L)
|
||||
{
|
||||
getServer(L)->requestShutdown();
|
||||
const char *msg = lua_tolstring(L, 1, NULL);
|
||||
bool reconnect = lua_toboolean(L, 2);
|
||||
getServer(L)->requestShutdown(msg ? msg : "", reconnect);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user