mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-14 13:51:31 +00:00
Merge branch 'exitvars-fix' into 'next'
Fix lua_pop -> lua_remove use in G_SetCustomExitVars lua See merge request STJr/SRB2!404
This commit is contained in:
commit
1e15f2365d
1 changed files with 1 additions and 1 deletions
|
@ -1934,7 +1934,7 @@ static int lib_gSetCustomExitVars(lua_State *L)
|
||||||
if (lua_isnumber(L, 1) || n >= 2)
|
if (lua_isnumber(L, 1) || n >= 2)
|
||||||
{
|
{
|
||||||
nextmapoverride = (INT16)luaL_checknumber(L, 1);
|
nextmapoverride = (INT16)luaL_checknumber(L, 1);
|
||||||
lua_pop(L, 1); // pop nextmapoverride; skipstats now 1 if available
|
lua_remove(L, 1); // remove nextmapoverride; skipstats now 1 if available
|
||||||
}
|
}
|
||||||
skipstats = lua_optboolean(L, 1);
|
skipstats = lua_optboolean(L, 1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue