mirror of
https://github.com/1dot13/source.git
synced 2026-07-29 13:52:17 +02:00
- Obliterating a sector will now destroy tanks as well.
- Spawning a new enemy via [Alt] + [b] can create tanks. git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@7928 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
@@ -1156,11 +1156,13 @@ UINT32 UIHandleNewBadMerc( UI_EVENT *pUIEvent )
|
||||
return( GAME_SCREEN );
|
||||
}
|
||||
|
||||
usRandom = (UINT16)Random( 10 );
|
||||
if( usRandom < 4 )
|
||||
usRandom = (UINT16)Random( 12 );
|
||||
if( usRandom < 3 )
|
||||
pSoldier = TacticalCreateAdministrator();
|
||||
else if( usRandom < 8 )
|
||||
else if( usRandom < 6 )
|
||||
pSoldier = TacticalCreateArmyTroop();
|
||||
else if ( usRandom < 9 )
|
||||
pSoldier = TacticalCreateEnemyTank( );
|
||||
else
|
||||
pSoldier = TacticalCreateEliteEnemy( );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user