mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-30 05:00:46 +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
080ff854b8
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))
|
if (!(mapheaderinfo[mapnum]->typeoflevel & TOL_COOP))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
if (mapvisited[mapnum]) // MV_MP
|
if (mapnum+1 == spstage_start)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
if (mapnum+1 == spstage_start)
|
#ifndef DEVELOP
|
||||||
|
if (mapvisited[mapnum]) // MV_MP
|
||||||
|
#endif
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
/* FALLTHRU */
|
/* FALLTHRU */
|
||||||
|
|
Loading…
Reference in a new issue