From c89095f6d62ae7f35f3b0cad8c5c672860f84802 Mon Sep 17 00:00:00 2001 From: Roman Tetelman Date: Sat, 3 Oct 2009 12:18:55 +0000 Subject: * fix compiler warning * remove reference to holding +button5 to repair in tutorial text --- src/cgame/cg_tutorial.c | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'src/cgame/cg_tutorial.c') diff --git a/src/cgame/cg_tutorial.c b/src/cgame/cg_tutorial.c index 01d82e5c..2dd5a5a2 100644 --- a/src/cgame/cg_tutorial.c +++ b/src/cgame/cg_tutorial.c @@ -352,7 +352,6 @@ static void CG_HumanCkitText( char *text, playerState_t *ps ) { buildable_t buildable = ps->stats[ STAT_BUILDABLE ] & ~SB_VALID_TOGGLEBIT; entityState_t *es; - float health; if( buildable > BA_NONE ) { @@ -371,16 +370,6 @@ static void CG_HumanCkitText( char *text, playerState_t *ps ) Q_strcat( text, MAX_TUTORIAL_TEXT, va( "Press %s to build a structure\n", CG_KeyNameForCommand( "+attack" ) ) ); - - if( CG_BuildableInRange( ps, &health ) ) - { - if( health < 1.0f ) - { - Q_strcat( text, MAX_TUTORIAL_TEXT, - va( "Hold %s to repair this structure\n", - CG_KeyNameForCommand( "+button5" ) ) ); - } - } } if( ( es = CG_BuildableInRange( ps, NULL ) ) ) -- cgit