mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix MAXAVAILABILITY loop
This commit is contained in:
parent
a29d43d3b5
commit
90903e999f
1 changed files with 1 additions and 1 deletions
|
|
@ -521,7 +521,7 @@ static void P_NetUnArchivePlayers(void)
|
|||
players[i].skincolor = READUINT8(save_p);
|
||||
players[i].skin = READINT32(save_p);
|
||||
|
||||
for (j = 0; i < MAXAVAILABILITY; j++)
|
||||
for (j = 0; j < MAXAVAILABILITY; j++)
|
||||
{
|
||||
players[i].availabilities[j] = READUINT8(save_p);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue