mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-04-06 01:57:14 +00:00
Lua: Make P_RestoreMusic follow the non-local player nil output convention
This commit is contained in:
parent
8fe4c369bf
commit
878ea36559
1 changed files with 8 additions and 2 deletions
|
@ -954,8 +954,14 @@ static int lib_pRestoreMusic(lua_State *L)
|
|||
INLEVEL
|
||||
if (!player)
|
||||
return LUA_ErrInvalid(L, "player_t");
|
||||
P_RestoreMusic(player);
|
||||
return 0;
|
||||
if (!player || P_IsLocalPlayer(player))
|
||||
{
|
||||
P_RestoreMusic(player);
|
||||
lua_pushboolean(L, true);
|
||||
}
|
||||
else
|
||||
lua_pushnil(L);
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int lib_pSpawnShieldOrb(lua_State *L)
|
||||
|
|
Loading…
Reference in a new issue