Skip to content

Commit

Permalink
Don't send stats for players that are not in game.
Browse files Browse the repository at this point in the history
  • Loading branch information
buginator committed Oct 29, 2010
1 parent 461b8c8 commit 2c68a67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/multisync.c
Expand Up @@ -1016,7 +1016,7 @@ BOOL sendScoreCheck(void)
{
uint8_t i;

for (i = 0; i < MAX_PLAYERS; i++)
for (i = 0; i < game.maxPlayers; i++)
{
PLAYERSTATS stats;

Expand Down

0 comments on commit 2c68a67

Please sign in to comment.