Proper G_GametypeHasSpectators for netgame splits

This commit is contained in:
TehRealSalt 2018-09-30 16:35:05 -04:00
parent 4da5c165f4
commit ad06b3c62f
1 changed files with 1 additions and 1 deletions

View File

@ -3132,7 +3132,7 @@ boolean G_GametypeHasSpectators(void)
#if 0
return (gametype != GT_COOP && gametype != GT_COMPETITION && gametype != GT_RACE);
#else
return (!splitscreen);//true;
return (multiplayer && !netgame); //true
#endif
}