mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-18 07:22:28 +00:00
Always allow the first singleplayer level in the MP level platter.
This commit is contained in:
parent
7d15afe6fb
commit
c89b1ec234
1 changed files with 3 additions and 0 deletions
|
@ -3822,6 +3822,9 @@ static boolean M_LevelAvailableOnPlatter(INT32 mapnum)
|
|||
if (mapvisited[mapnum]) // MV_MP
|
||||
return true;
|
||||
|
||||
if (mapnum+1 == spstage_start)
|
||||
return true;
|
||||
|
||||
// intentional fallthrough
|
||||
case LLM_RECORDATTACK:
|
||||
case LLM_NIGHTSATTACK:
|
||||
|
|
Loading…
Reference in a new issue