Proper G_GametypeHasSpectators for netgame splits

This commit is contained in:
TehRealSalt 2018-09-30 16:35:05 -04:00
parent 4da5c165f4
commit ad06b3c62f

View file

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