mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-23 22:11:01 +00:00
Merge branch 'be-more-nice-with-levelselect-mp' into 'master'
Remove level select restrictions in DEVELOP Multiplayer Closes #238 See merge request STJr/SRB2Internal!399
This commit is contained in:
commit
13edddc735
1 changed files with 4 additions and 2 deletions
|
|
@ -4546,10 +4546,12 @@ static boolean M_LevelAvailableOnPlatter(INT32 mapnum)
|
|||
if (!(mapheaderinfo[mapnum]->typeoflevel & TOL_COOP))
|
||||
return true;
|
||||
|
||||
if (mapvisited[mapnum]) // MV_MP
|
||||
if (mapnum+1 == spstage_start)
|
||||
return true;
|
||||
|
||||
if (mapnum+1 == spstage_start)
|
||||
#ifndef DEVELOP
|
||||
if (mapvisited[mapnum]) // MV_MP
|
||||
#endif
|
||||
return true;
|
||||
|
||||
/* FALLTHRU */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue