mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
Add enemies also on insane difficulty
This commit is contained in:
@@ -1418,6 +1418,11 @@ UINT8 NumEnemiesToAttackFirstTunnelSector( UINT8 *pAdmins, UINT8 *pTroops, UINT8
|
||||
ubNumTroops = 4 + Random( 0 );
|
||||
ubNumElites = 4 + Random( 0 );
|
||||
break;
|
||||
case DIF_LEVEL_INSANE:
|
||||
ubNumAdmins = 0 + Random(0);
|
||||
ubNumTroops = 0 + Random(0);
|
||||
ubNumElites = 8 + Random(0);
|
||||
break;
|
||||
}
|
||||
|
||||
if( pAdmins )
|
||||
@@ -1470,6 +1475,11 @@ UINT8 NumEnemiesToAttackSecondTunnelSector( UINT8 *pAdmins, UINT8 *pTroops, UINT
|
||||
ubNumTroops = 6 + Random( 0 );
|
||||
ubNumElites = 4 + Random( 3 );
|
||||
break;
|
||||
case DIF_LEVEL_INSANE:
|
||||
ubNumAdmins = 0 + Random(0);
|
||||
ubNumTroops = 0 + Random(0);
|
||||
ubNumElites = 10 + Random(0);
|
||||
break;
|
||||
}
|
||||
|
||||
if( pAdmins )
|
||||
|
||||
Reference in New Issue
Block a user