mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-10 07:12:03 +00:00
if this is what caused resynching to randomly turn some people spectators then welp
This commit is contained in:
parent
c0fb3fce73
commit
691d368434
1 changed files with 1 additions and 1 deletions
|
@ -912,7 +912,7 @@ static inline void resynch_read_others(resynchend_pak *p)
|
|||
for (i = 0; i < MAXPLAYERS; ++i)
|
||||
{
|
||||
// We don't care if they're in the game or not, just write all the data.
|
||||
players[i].spectator = !(loc_ingame & i<<i);
|
||||
players[i].spectator = !(loc_ingame & (i<<i));
|
||||
players[i].ctfteam = (INT32)LONG(p->ctfteam[i]); // no, 0 does not mean spectator, at least not in Match
|
||||
players[i].score = (UINT32)LONG(p->score[i]);
|
||||
players[i].numboxes = SHORT(p->numboxes[i]);
|
||||
|
|
Loading…
Reference in a new issue