Don't start game entity loops at index 1

This commit is contained in:
Zack Middleton 2017-06-07 20:32:57 -05:00
parent 71512bb1fd
commit 5b9302a7ef
2 changed files with 3 additions and 3 deletions

View File

@ -275,7 +275,7 @@ void G_FindTeams( void ) {
c = 0;
c2 = 0;
for ( i=1, e=g_entities+i ; i < level.num_entities ; i++,e++ ){
for ( i=MAX_CLIENTS, e=g_entities+i ; i < level.num_entities ; i++,e++ ) {
if (!e->inuse)
continue;
if (!e->team)

View File

@ -320,8 +320,8 @@ void Svcmd_EntityList_f (void) {
int e;
gentity_t *check;
check = g_entities+1;
for (e = 1; e < level.num_entities ; e++, check++) {
check = g_entities;
for (e = 0; e < level.num_entities ; e++, check++) {
if ( !check->inuse ) {
continue;
}