aboutsummaryrefslogtreecommitdiff
path: root/src/script/lua_api
diff options
context:
space:
mode:
authorWuzzy <wuzzy2@mail.ru>2021-10-05 12:35:55 +0000
committerGitHub <noreply@github.com>2021-10-05 15:35:55 +0300
commit4fca601e0cf74ce642e4e49ca7d4fe3e59915846 (patch)
tree985cf00b173113638cf59b29464f5e6bf57de9d6 /src/script/lua_api
parentd7e7ade0f61a0f5e05d889ffbc7d9a878148a461 (diff)
downloadhax-minetest-server-4fca601e0cf74ce642e4e49ca7d4fe3e59915846.tar.gz
hax-minetest-server-4fca601e0cf74ce642e4e49ca7d4fe3e59915846.zip
Add get_server_max_lag() (#11671)
Diffstat (limited to 'src/script/lua_api')
-rw-r--r--src/script/lua_api/l_server.cpp12
-rw-r--r--src/script/lua_api/l_server.h3
2 files changed, 15 insertions, 0 deletions
diff --git a/src/script/lua_api/l_server.cpp b/src/script/lua_api/l_server.cpp
index 473faaa14..6438fa6fd 100644
--- a/src/script/lua_api/l_server.cpp
+++ b/src/script/lua_api/l_server.cpp
@@ -57,6 +57,17 @@ int ModApiServer::l_get_server_uptime(lua_State *L)
return 1;
}
+// get_server_max_lag()
+int ModApiServer::l_get_server_max_lag(lua_State *L)
+{
+ NO_MAP_LOCK_REQUIRED;
+ ServerEnvironment *s_env = dynamic_cast<ServerEnvironment *>(getEnv(L));
+ if (!s_env)
+ lua_pushnil(L);
+ else
+ lua_pushnumber(L, s_env->getMaxLagEstimate());
+ return 1;
+}
// print(text)
int ModApiServer::l_print(lua_State *L)
@@ -512,6 +523,7 @@ void ModApiServer::Initialize(lua_State *L, int top)
API_FCT(request_shutdown);
API_FCT(get_server_status);
API_FCT(get_server_uptime);
+ API_FCT(get_server_max_lag);
API_FCT(get_worldpath);
API_FCT(is_singleplayer);
diff --git a/src/script/lua_api/l_server.h b/src/script/lua_api/l_server.h
index c688e494b..a6f709787 100644
--- a/src/script/lua_api/l_server.h
+++ b/src/script/lua_api/l_server.h
@@ -33,6 +33,9 @@ private:
// get_server_uptime()
static int l_get_server_uptime(lua_State *L);
+ // get_server_max_lag()
+ static int l_get_server_max_lag(lua_State *L);
+
// get_worldpath()
static int l_get_worldpath(lua_State *L);