mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix core.get_player_by_name() returning unusable ObjectRef
Followup to the previous commit.
This commit is contained in:
parent
1761d7d0f8
commit
6d8e2d2483
1 changed files with 4 additions and 8 deletions
|
@ -667,15 +667,11 @@ int ModApiEnvMod::l_get_player_by_name(lua_State *L)
|
|||
// Do it
|
||||
const char *name = luaL_checkstring(L, 1);
|
||||
RemotePlayer *player = env->getPlayer(name);
|
||||
if (player == NULL){
|
||||
lua_pushnil(L);
|
||||
return 1;
|
||||
}
|
||||
if (!player || player->getPeerId() == PEER_ID_INEXISTENT)
|
||||
return 0;
|
||||
PlayerSAO *sao = player->getPlayerSAO();
|
||||
if(sao == NULL){
|
||||
lua_pushnil(L);
|
||||
return 1;
|
||||
}
|
||||
if (!sao || sao->isGone())
|
||||
return 0;
|
||||
// Put player on stack
|
||||
getScriptApiBase(L)->objectrefGetOrCreate(L, sao);
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue