diff options
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/bg_public.h | 18 | ||||
-rw-r--r-- | src/game/g_team.c | 5 |
2 files changed, 2 insertions, 21 deletions
diff --git a/src/game/bg_public.h b/src/game/bg_public.h index 36e6a0aa..68217cf0 100644 --- a/src/game/bg_public.h +++ b/src/game/bg_public.h @@ -295,24 +295,6 @@ typedef enum typedef enum { - PW_NONE, - - PW_QUAD, - PW_BATTLESUIT, - PW_HASTE, - PW_INVIS, - PW_REGEN, - PW_FLIGHT, - - PW_REDFLAG, - PW_BLUEFLAG, - PW_BALL, - - PW_NUM_POWERUPS -} powerup_t; - -typedef enum -{ HI_NONE, HI_TELEPORTER, diff --git a/src/game/g_team.c b/src/game/g_team.c index f2293922..85582f19 100644 --- a/src/game/g_team.c +++ b/src/game/g_team.c @@ -195,10 +195,9 @@ void TeamplayInfoMessage( gentity_t *ent ) h = 0; Com_sprintf( entry, sizeof( entry ), - " %i %i %i %i %i %i", -// level.sortedClients[i], player->client->pers.teamState.location, h, a, + " %i %i %i %i %i", i, player->client->pers.teamState.location, h, a, - player->client->ps.weapon, player->s.misc ); + player->client->ps.weapon ); j = strlen( entry ); |