diff options
Diffstat (limited to 'src/ui/ui_main.c')
-rw-r--r-- | src/ui/ui_main.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ui/ui_main.c b/src/ui/ui_main.c index 03840d00..50fbeec6 100644 --- a/src/ui/ui_main.c +++ b/src/ui/ui_main.c @@ -2839,19 +2839,19 @@ static void UI_LoadTremAlienClasses( ) uiInfo.tremAlienClassCount = 3; uiInfo.tremAlienClassList[ 0 ].text = - String_Alloc( BG_FindHumanNameForClassNum( PCL_D_B_BASE ) ); + String_Alloc( BG_FindHumanNameForClassNum( PCL_A_B_BASE ) ); uiInfo.tremAlienClassList[ 0 ].cmd = - String_Alloc( va( "cmd class %s", BG_FindNameForClassNum( PCL_D_B_BASE ) ) ); + String_Alloc( va( "cmd class %s", BG_FindNameForClassNum( PCL_A_B_BASE ) ) ); uiInfo.tremAlienClassList[ 1 ].text = - String_Alloc( BG_FindHumanNameForClassNum( PCL_D_B_LEV1 ) ); + String_Alloc( BG_FindHumanNameForClassNum( PCL_A_B_LEV1 ) ); uiInfo.tremAlienClassList[ 1 ].cmd = - String_Alloc( va( "cmd class %s", BG_FindNameForClassNum( PCL_D_B_LEV1 ) ) ); + String_Alloc( va( "cmd class %s", BG_FindNameForClassNum( PCL_A_B_LEV1 ) ) ); uiInfo.tremAlienClassList[ 2 ].text = - String_Alloc( BG_FindHumanNameForClassNum( PCL_D_O_BASE ) ); + String_Alloc( BG_FindHumanNameForClassNum( PCL_A_O_BASE ) ); uiInfo.tremAlienClassList[ 2 ].cmd = - String_Alloc( va( "cmd class %s", BG_FindNameForClassNum( PCL_D_O_BASE ) ) ); + String_Alloc( va( "cmd class %s", BG_FindNameForClassNum( PCL_A_O_BASE ) ) ); } /* @@ -3009,7 +3009,7 @@ static void UI_LoadTremAlienBuilds( ) for( i = BA_NONE +1; i < BA_NUM_BUILDABLES; i++ ) { - if( BG_FindTeamForBuildable( i ) == BIT_DROIDS ) + if( BG_FindTeamForBuildable( i ) == BIT_ALIENS ) { uiInfo.tremAlienBuildList[ j ].text = String_Alloc( BG_FindHumanNameForBuildable( i ) ); |