mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +00:00
Undo over-optimisation and don't drop the visited status of unloaded custom courses
Fixes everyone having to NoVisitNeeded their SP-intended stuff
This commit is contained in:
parent
1cdf381aba
commit
e1cab3a62e
1 changed files with 1 additions and 1 deletions
|
|
@ -655,7 +655,7 @@ void srb2::load_ng_gamedata()
|
||||||
|
|
||||||
mapheaderinfo[mapnum]->records = dummyrecord;
|
mapheaderinfo[mapnum]->records = dummyrecord;
|
||||||
}
|
}
|
||||||
else if (dummyrecord.mapvisited & MV_BEATEN
|
else if (dummyrecord.mapvisited & (MV_VISITED|MV_BEATEN)
|
||||||
|| dummyrecord.timeattack.time != 0 || dummyrecord.timeattack.lap != 0
|
|| dummyrecord.timeattack.time != 0 || dummyrecord.timeattack.lap != 0
|
||||||
|| dummyrecord.spbattack.time != 0 || dummyrecord.spbattack.lap != 0
|
|| dummyrecord.spbattack.time != 0 || dummyrecord.spbattack.lap != 0
|
||||||
|| dummyrecord.spraycan != MCAN_INVALID)
|
|| dummyrecord.spraycan != MCAN_INVALID)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue