mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 04:21:47 +00:00
Merge branch 'radiomode3' into 'master'
Fix conditionset-based unlocks on the Sound Test (resolves #312). Closes #312 See merge request STJr/SRB2Internal!508
This commit is contained in:
commit
5cc282e69d
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