diff options
author | Roman Tetelman <kevlarman@gmail.com> | 2009-10-03 12:20:43 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:15:52 +0000 |
commit | d000466c00e4daa955eafde9aa5ba5a49562a45e (patch) | |
tree | 8e9d3e6a631ad618f6674e6c644d130ea6253667 /src/cgame/cg_tutorial.c | |
parent | 435872618d275793dfa9ef63ff5e5d85de778299 (diff) |
* remove hovel (fixes #26) (todo: go back and actually remove the code)
Diffstat (limited to 'src/cgame/cg_tutorial.c')
-rw-r--r-- | src/cgame/cg_tutorial.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/cgame/cg_tutorial.c b/src/cgame/cg_tutorial.c index 2dd5a5a2..eb598cf9 100644 --- a/src/cgame/cg_tutorial.c +++ b/src/cgame/cg_tutorial.c @@ -656,7 +656,7 @@ const char *CG_TutorialText( void ) { entityState_t *es = CG_BuildableInRange( ps, NULL ); - if( ps->stats[ STAT_STATE ] & SS_HOVELING ) + /*if( ps->stats[ STAT_STATE ] & SS_HOVELING ) { Q_strcat( text, MAX_TUTORIAL_TEXT, va( "Press %s to exit the hovel\n", @@ -671,7 +671,8 @@ const char *CG_TutorialText( void ) va( "Press %s to enter the hovel\n", CG_KeyNameForCommand( "+button7" ) ) ); } - else if( BG_AlienCanEvolve( ps->stats[ STAT_CLASS ], + else*/ + if( BG_AlienCanEvolve( ps->stats[ STAT_CLASS ], ps->persistant[ PERS_CREDIT ], cgs.alienStage ) ) { |