From d90bdf12e0aaa4cef3772d0d50fc40dfb1f09802 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Fri, 21 Dec 2001 21:23:41 +0000 Subject: After changing aliens->droids, changed droids->aliens *sigh* --- src/ui/ui_main.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/ui') 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 ) ); -- cgit