fixed an oversight

This commit is contained in:
JezuzLizard 2020-02-23 08:17:08 -08:00 committed by GitHub
parent 38f368a075
commit 925af97d3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,14 +42,14 @@ pregameInvulnerability()
}
while ( level.player_invulernability_active == 0 )
{
i = 0;
while ( i < players.size )
i2 = 0;
while ( i2 < players.size )
{
players = get_players();
wait 0.05;
player = players[ i ];
player = players[ i2 ];
player disableinvulnerability();
i++;
i2++;
}
break;
}