-added ENABLE_ALL_WEAPON_CACHES and ENABLE_ALL_TERRORIST flags (requires new game to use)

git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@428 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
MaddMugsy
2006-08-12 00:56:26 +00:00
parent 47c26ccdcf
commit f135291973
4 changed files with 41 additions and 10 deletions
+5 -1
View File
@@ -441,13 +441,17 @@ void DecideActiveTerrorists( void )
case DIF_LEVEL_EASY:
uiChance = 70;
break;
case DIF_LEVEL_HARD:
case DIF_LEVEL_INSANE:
uiChance = 30;
break;
default:
uiChance = 50;
break;
}
if ( gGameExternalOptions.fEnableAllTerrorists )
uiChance = 100;
// add at least 2 more
ubNumAdditionalTerrorists = 2;
for (ubLoop = 0; ubLoop < (MAX_ADDITIONAL_TERRORISTS - 2); ubLoop++)