mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-26 04:51:43 +00:00
Lua P_RestoreMusic else if fix
This commit is contained in:
parent
0f2b4da1a9
commit
7aee66592f
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…
Add table
Reference in a new issue