[slightly off-topic commit] don't allow MP Special Stages to be selectable via the MP level platter

This commit is contained in:
toaster 2019-09-04 15:52:25 +01:00
parent 0986195d21
commit 5bc034bc3e
1 changed files with 3 additions and 0 deletions

View File

@ -4510,6 +4510,9 @@ static boolean M_CanShowLevelOnPlatter(INT32 mapnum, INT32 gt)
if (mapheaderinfo[mapnum]->menuflags & LF2_HIDEINMENU)
return false;
if (G_IsSpecialStage(mapnum+1))
return false;
if (gt == GT_COOP && (mapheaderinfo[mapnum]->typeoflevel & TOL_COOP))
return true;