mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +00:00
UC_AND, UC_COMMA: Fix not combining with UCRP_REQUIRESPLAYING
Fixes
This commit is contained in:
parent
87b80a62f2
commit
60968b2f08
1 changed files with 5 additions and 1 deletions
|
|
@ -797,7 +797,11 @@ static boolean M_CheckConditionSet(conditionset_t *c, player_t *player)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
// Skip future conditions with the same ID if one fails, for obvious reasons
|
// Skip future conditions with the same ID if one fails, for obvious reasons
|
||||||
else if (lastID && lastID == cn->id && !achievedSoFar)
|
if (lastID && lastID == cn->id && !achievedSoFar)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
// Skip entries that are JUST for string building
|
||||||
|
if (cn->type == UC_AND || cn->type == UC_COMMA)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
lastID = cn->id;
|
lastID = cn->id;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue