mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-20 09:52:18 +00:00
Don't error when checking patch.valid on invalid patches
This commit is contained in:
parent
1d2f6c9581
commit
b7a6773ff5
1 changed files with 6 additions and 1 deletions
|
@ -270,8 +270,13 @@ static int patch_get(lua_State *L)
|
|||
|
||||
// patches are CURRENTLY always valid, expected to be cached with PU_STATIC
|
||||
// this may change in the future, so patch.valid still exists
|
||||
if (!patch)
|
||||
if (!patch) {
|
||||
if (field == patch_valid) {
|
||||
lua_pushboolean(L, 0);
|
||||
return 1;
|
||||
}
|
||||
return LUA_ErrInvalid(L, "patch_t");
|
||||
}
|
||||
|
||||
switch (field)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue