mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix conditionset-based unlocks on the Sound Test.
This commit is contained in:
parent
1eedb7d656
commit
056cb494a6
1 changed files with 1 additions and 1 deletions
|
|
@ -1685,7 +1685,7 @@ boolean S_PrepareSoundTest(void)
|
||||||
soundtestdefs[pos++] = def;
|
soundtestdefs[pos++] = def;
|
||||||
if (def->soundtestcond > 0 && !(mapvisited[def->soundtestcond-1] & MV_BEATEN))
|
if (def->soundtestcond > 0 && !(mapvisited[def->soundtestcond-1] & MV_BEATEN))
|
||||||
continue;
|
continue;
|
||||||
if (def->soundtestcond < 0 && !M_Achieved(1-def->soundtestcond))
|
if (def->soundtestcond < 0 && !M_Achieved(-1-def->soundtestcond))
|
||||||
continue;
|
continue;
|
||||||
def->allowed = true;
|
def->allowed = true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue