mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-15 17:21:34 +00:00
Proper G_GametypeHasSpectators for netgame splits
This commit is contained in:
parent
4da5c165f4
commit
ad06b3c62f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue