mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-30 05:00:46 +00:00
Lua P_RestoreMusic else if fix
This commit is contained in:
parent
0f5b7e6630
commit
26721b673a
1 changed files with 1 additions and 1 deletions
|
@ -954,7 +954,7 @@ static int lib_pRestoreMusic(lua_State *L)
|
|||
INLEVEL
|
||||
if (!player)
|
||||
return LUA_ErrInvalid(L, "player_t");
|
||||
else if (P_IsLocalPlayer(player))
|
||||
if (P_IsLocalPlayer(player))
|
||||
P_RestoreMusic(player);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue