diff --git a/@ExileServer/addons/a3_dms/config.cpp b/@ExileServer/addons/a3_dms/config.cpp index 8e28c2f..130ca7a 100644 --- a/@ExileServer/addons/a3_dms/config.cpp +++ b/@ExileServer/addons/a3_dms/config.cpp @@ -4,7 +4,7 @@ class CfgPatches { units[] = {}; weapons[] = {}; - a3_DMS_version = "July 5, 2016"; + a3_DMS_version = "July 5, 2016 (Fixed)"; requiredVersion = 1.36; requiredAddons[] = {"exile_client","exile_server_config"}; }; diff --git a/@ExileServer/addons/a3_dms/scripts/fn_SpawnAIGroup.sqf b/@ExileServer/addons/a3_dms/scripts/fn_SpawnAIGroup.sqf index 8b57f96..fe09c79 100644 --- a/@ExileServer/addons/a3_dms/scripts/fn_SpawnAIGroup.sqf +++ b/@ExileServer/addons/a3_dms/scripts/fn_SpawnAIGroup.sqf @@ -81,7 +81,7 @@ for "_i" from 1 to _count do }; // An AI will definitely spawn with a launcher if you define type -if ((DMS_ai_use_launchers || {!(_launcherType isEqualTo "")}) then +if (DMS_ai_use_launchers || {!(_launcherType isEqualTo "")}) then { if (_launcherType isEqualTo "") then { diff --git a/@ExileServer/addons/a3_dms/scripts/fn_SpawnAIGroup_MultiPos.sqf b/@ExileServer/addons/a3_dms/scripts/fn_SpawnAIGroup_MultiPos.sqf index c1e9794..1f9a018 100644 --- a/@ExileServer/addons/a3_dms/scripts/fn_SpawnAIGroup_MultiPos.sqf +++ b/@ExileServer/addons/a3_dms/scripts/fn_SpawnAIGroup_MultiPos.sqf @@ -97,7 +97,7 @@ for "_i" from 1 to _count do }; // An AI will definitely spawn with a launcher if you define type -if ((DMS_ai_use_launchers || {!(_launcherType isEqualTo "")}) then +if (DMS_ai_use_launchers || {!(_launcherType isEqualTo "")}) then { if (_launcherType isEqualTo "") then { diff --git a/README.md b/README.md index 5bbe9fc..b05cd60 100644 --- a/README.md +++ b/README.md @@ -152,6 +152,9 @@ ___ # Changelog: ### Main Branch +### July 5, 2016 (7:15 PM CST-America): +* Fixed a typo in the "SpawnAIGroup" functions from the previous update + ### July 5, 2016 (7:15 PM CST-America): * Fixed a typo in the config (the second ```DMS_Survivor_Vehicle_MoneyGain``` should be ```DMS_Survivor_Vehicle_SpawnMoney```). * Added Apex weapons, equipment, and vehicles to config (disabled by default).