diff options
author | Tim Angus <tim@ngus.net> | 2005-07-22 01:32:50 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2005-07-22 01:32:50 +0000 |
commit | ce00395ab73bb763d5c2b19c2fcae46e9b8bfb8e (patch) | |
tree | d2e6ec40a28beb426ae00968bdd2052e6c1478fe /src/cgame | |
parent | b104fc884a9644c4469eb2d6076bee0c6720f132 (diff) |
* Added a report of which stages each team had reached to the intermission scoreboard
* Advanced construction kit is now free
* Fixed the bug where the armoury and repeater would still work via command when not powered
* Fixed bug where the granger could evolve whilst waiting for its build timer
* Increased the jump height of the base granger slightly
Diffstat (limited to 'src/cgame')
-rw-r--r-- | src/cgame/cg_draw.c | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/cgame/cg_draw.c b/src/cgame/cg_draw.c index a805f8ac..88068c65 100644 --- a/src/cgame/cg_draw.c +++ b/src/cgame/cg_draw.c @@ -1663,11 +1663,18 @@ 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.persistant[ PERS_TEAM ] == TEAM_SPECTATOR && !cg.intermissionStarted ) return; - if( cg.snap->ps.stats[ STAT_PTEAM ] == PTE_ALIENS ) + if( cg.intermissionStarted ) + { + Com_sprintf( s, MAX_TOKEN_CHARS, + "Stage %d" //PH34R MY MAD-LEET CODING SKILLZ + " " + "Stage %d", + cgs.alienStage + 1, cgs.humanStage + 1 ); + } + else if( cg.snap->ps.stats[ STAT_PTEAM ] == PTE_ALIENS ) { kills = cgs.alienNextStageThreshold - cgs.alienKills; |