mirror of
https://github.com/UberGames/rpgxEF.git
synced 2025-04-22 17:00:53 +00:00
...
This commit is contained in:
parent
008bd777c0
commit
eb7e630a8c
1 changed files with 4 additions and 3 deletions
|
@ -1524,14 +1524,15 @@ All but the last will have the teamchain field set to the next one
|
|||
================
|
||||
*/
|
||||
static void G_FindTeams( void ) {
|
||||
/*@shared@*/ gentity_t* e;
|
||||
/*@shared@*/ gentity_t* e2;
|
||||
gentity_t* e;
|
||||
gentity_t* e2;
|
||||
int i, j;
|
||||
int c, c2;
|
||||
|
||||
c = 0;
|
||||
c2 = 0;
|
||||
for ( i=1, e=g_entities+i ; i < level.num_entities ; i++,e++ ){
|
||||
e=g_entities+i;
|
||||
for ( i=1; i < level.num_entities ; i++,e++ ){
|
||||
if (!e->inuse)
|
||||
continue;
|
||||
if (!e->team)
|
||||
|
|
Loading…
Reference in a new issue