mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-01 08:51:21 +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;
|
||||
|
||||
// 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;
|
||||
|
||||
lastID = cn->id;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue