mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-28 04:51:42 +00:00
M_UpdateConditionSetsPending: Fix invalid character names returning the entire loop early
This commit is contained in:
parent
b0ee900422
commit
b9a6f7362b
1 changed files with 1 additions and 1 deletions
|
|
@ -826,7 +826,7 @@ void M_UpdateConditionSetsPending(void)
|
||||||
if (cn->requirement < 0)
|
if (cn->requirement < 0)
|
||||||
{
|
{
|
||||||
CONS_Alert(CONS_WARNING, "UCRP_ISCHARACTER: Invalid character %s for condition ID %d", cn->stringvar, cn->id+1);
|
CONS_Alert(CONS_WARNING, "UCRP_ISCHARACTER: Invalid character %s for condition ID %d", cn->stringvar, cn->id+1);
|
||||||
return;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
Z_Free(cn->stringvar);
|
Z_Free(cn->stringvar);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue