diff options
author | Roman Tetelman <kevlarman@gmail.com> | 2009-10-03 12:23:21 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:15:54 +0000 |
commit | eb8d5fd1bb8e1b6faf512606b45287a4bd607374 (patch) | |
tree | 32a81cb5a19370a0b60cb8cf1c0036e42bb177c4 /src/cgame | |
parent | df5c979a32fb978180f6793ebec42999748a146b (diff) |
* redo hovel removal in a way that doesn't break log parsers (reported by msk)
Diffstat (limited to 'src/cgame')
-rw-r--r-- | src/cgame/cg_tutorial.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/cgame/cg_tutorial.c b/src/cgame/cg_tutorial.c index 3e6d354a..2dd5a5a2 100644 --- a/src/cgame/cg_tutorial.c +++ b/src/cgame/cg_tutorial.c @@ -654,7 +654,7 @@ const char *CG_TutorialText( void ) if( ps->stats[ STAT_TEAM ] == TEAM_ALIENS ) { - /*entityState_t *es = CG_BuildableInRange( ps, NULL ); + entityState_t *es = CG_BuildableInRange( ps, NULL ); if( ps->stats[ STAT_STATE ] & SS_HOVELING ) { @@ -671,8 +671,7 @@ 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 ) ) { |