diff options
author | Tim Angus <tim@ngus.net> | 2006-04-22 23:01:43 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2006-04-22 23:01:43 +0000 |
commit | 523411fb188b851ed46e72acfd9bd981abf432fc (patch) | |
tree | 3e957db85cb70f6e3cd4fd692847a7a561ecb6cc /src/cgame/cg_tutorial.c | |
parent | f559c2d486ce3bab66a4f1c0601e934ee841a317 (diff) |
* Fixed retarded exploitable "kick" command
* Removed ability to change the timelimit by vote
* Added sprint ability to human tutorial text
Diffstat (limited to 'src/cgame/cg_tutorial.c')
-rw-r--r-- | src/cgame/cg_tutorial.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cgame/cg_tutorial.c b/src/cgame/cg_tutorial.c index 035d8304..91df7864 100644 --- a/src/cgame/cg_tutorial.c +++ b/src/cgame/cg_tutorial.c @@ -487,6 +487,10 @@ static void CG_HumanText( char *text, playerState_t *ps ) Q_strcat( text, MAX_TUTORIAL_TEXT, va( "Press %s to use a structure\n", CG_KeyNameForCommand( "+button7" ) ) ); + + Q_strcat( text, MAX_TUTORIAL_TEXT, + va( "Press %s to sprint\n", + CG_KeyNameForCommand( "boost" ) ) ); } /* |