diff options
author | Tim Angus <tim@ngus.net> | 2001-12-21 21:23:41 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2001-12-21 21:23:41 +0000 |
commit | d90bdf12e0aaa4cef3772d0d50fc40dfb1f09802 (patch) | |
tree | a5c95c4709372cc694c709d9c7f44929491e482e /src/ui | |
parent | 9ce221f5d4cafc60aa78a8b1f1dc584a1e806c79 (diff) |
After changing aliens->droids, changed droids->aliens *sigh*
Diffstat (limited to 'src/ui')
-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 ) ); |