diff --git a/@ExileServer/addons/a3_dms/config.cpp b/@ExileServer/addons/a3_dms/config.cpp index e602e23..7f567e5 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 = "May 16, 2016 (TEST)"; + a3_DMS_version = "May 16, 2016 (TESTv2)"; 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 0e87300..c95caa3 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 && {DMS_ai_launchers_per_group>0}) || {!_launcherType isEqualTo ""}) then +if ((DMS_ai_use_launchers && {DMS_ai_launchers_per_group>0}) || {!(_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 341885d..ea653f4 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 && {DMS_ai_launchers_per_group>0}) || {!_launcherType isEqualTo ""}) then +if ((DMS_ai_use_launchers && {DMS_ai_launchers_per_group>0}) || {!(_launcherType isEqualTo "")}) then { if (_launcherType isEqualTo "") then { diff --git a/README.md b/README.md index 69f6dda..91da71c 100644 --- a/README.md +++ b/README.md @@ -154,6 +154,9 @@ ___ # Changelog: ### Test Branch: +#### May 16, 2016 (11:00 AM CST-America): +* Fixed an error in fn_SpawnAIGroup (and MultiPos variant) + #### May 16, 2016 (11:00 AM CST-America): * Occupation will now print debug logs only if DMS_DEBUG is enabled. * Fixed an error with fn_FindSafePos.