minetest,get_connected_players: Return empty table at load time (#9493)

This commit is contained in:
sfan5 2020-03-10 20:32:04 +01:00 committed by GitHub
parent 7da4f9ef20
commit 7a7bfdca7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -643,7 +643,13 @@ int ModApiEnvMod::l_add_item(lua_State *L)
// get_connected_players()
int ModApiEnvMod::l_get_connected_players(lua_State *L)
{
GET_ENV_PTR;
ServerEnvironment *env = (ServerEnvironment *) getEnv(L);
if (!env) {
log_deprecated(L, "Calling get_connected_players() at mod load time"
" is deprecated");
lua_createtable(L, 0, 0);
return 1;
}
lua_createtable(L, env->getPlayerCount(), 0);
u32 i = 0;