diff options
author | Tim Angus <tim@ngus.net> | 2009-10-03 12:46:30 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:16:13 +0000 |
commit | 120a3dd717954482db9109358f26b009f05d0421 (patch) | |
tree | a11dbb06594df9b6bfb954769a979b77f89d0a42 /src/cgame/cg_tutorial.c | |
parent | 947d079b94b7cfb2cf42d612ede728c34552d373 (diff) |
* Various changes resulting from sanity checking against mgdev HEAD
Diffstat (limited to 'src/cgame/cg_tutorial.c')
-rw-r--r-- | src/cgame/cg_tutorial.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cgame/cg_tutorial.c b/src/cgame/cg_tutorial.c index bd41be2a..41507162 100644 --- a/src/cgame/cg_tutorial.c +++ b/src/cgame/cg_tutorial.c @@ -221,7 +221,8 @@ static void CG_AlienBuilderText( char *text, playerState_t *ps ) } } - if( ps->stats[ STAT_CLASS ] == PCL_ALIEN_BUILDER0_UPG ) + if( ps->stats[ STAT_CLASS ] == PCL_ALIEN_BUILDER0 || + ps->stats[ STAT_CLASS ] == PCL_ALIEN_BUILDER0_UPG ) { if( ( ps->stats[ STAT_BUILDABLE ] & ~SB_VALID_TOGGLEBIT ) == BA_NONE ) { |