diff options
author | Tim Angus <tim@ngus.net> | 2006-12-30 23:39:14 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2006-12-30 23:39:14 +0000 |
commit | e0914c92964dba43ca04ac7e3d291d1b9b777546 (patch) | |
tree | 068e43ad8df32718bb8afc01735c9b768ad91c0b /src/cgame | |
parent | 0a683f6a82be6e2b3aa4eeea3bec163a3276f9c1 (diff) |
* (bug 2692) Stage report now shown when not spawned
Diffstat (limited to 'src/cgame')
-rw-r--r-- | src/cgame/cg_draw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cgame/cg_draw.c b/src/cgame/cg_draw.c index f5527348..3245458b 100644 --- a/src/cgame/cg_draw.c +++ b/src/cgame/cg_draw.c @@ -1643,7 +1643,7 @@ static void CG_DrawStageReport( rectDef_t *rect, float text_x, float text_y, char s[ MAX_TOKEN_CHARS ]; int tx, w, kills; - if( cg.snap->ps.persistant[ PERS_TEAM ] == TEAM_SPECTATOR && !cg.intermissionStarted ) + if( cg.snap->ps.stats[ STAT_PTEAM ] == PTE_NONE && !cg.intermissionStarted ) return; if( cg.intermissionStarted ) |