mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-23 19:31:05 +00:00
Merge branch 'specialstagecheck' into 'next'
A special stage is a special stage, even outside of coop. Closes #211 See merge request STJr/SRB2!1180
This commit is contained in:
commit
d4bef36c19
1 changed files with 1 additions and 1 deletions
|
@ -3518,7 +3518,7 @@ INT32 G_GetGametypeByName(const char *gametypestr)
|
|||
//
|
||||
boolean G_IsSpecialStage(INT32 mapnum)
|
||||
{
|
||||
if (gametype != GT_COOP || modeattacking == ATTACKING_RECORD)
|
||||
if (modeattacking == ATTACKING_RECORD)
|
||||
return false;
|
||||
if (mapnum >= sstage_start && mapnum <= sstage_end)
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue