From fc765f5f146627d282b4374dd0c575895d64a900 Mon Sep 17 00:00:00 2001 From: Mikko Tiusanen Date: Fri, 1 Aug 2014 20:35:04 +0300 Subject: Fixed the drawing order of alien, human stages in spectator view. Fixed the stage counters for stages 4 and 5. Reset default values for human stage thresholds to half of what aliens got. --- src/cgame/cg_draw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cgame/cg_draw.c') diff --git a/src/cgame/cg_draw.c b/src/cgame/cg_draw.c index 2ec205f..6af1375 100644 --- a/src/cgame/cg_draw.c +++ b/src/cgame/cg_draw.c @@ -1746,7 +1746,7 @@ static void CG_DrawStageReport( rectDef_t *rect, float text_x, float text_y, if( cg.snap->ps.stats[ STAT_TEAM ] == TEAM_NONE ) // return; { - Com_sprintf( s, MAX_TOKEN_CHARS, " %d [ye2]HUMANS |STAGE| ALIENS[Ye] %d ", cgs.humanStage + 1 , cgs.alienStage + 1); + Com_sprintf( s, MAX_TOKEN_CHARS, " %d [ye2]ALIENS |STAGE| HUMANS[Ye] %d ", cgs.alienStage + 1 , cgs.humanStage + 1); } -- cgit