This commit is contained in:
eraser1 2016-05-16 17:41:33 -05:00
parent 146ad20edc
commit 1244550ded
4 changed files with 6 additions and 3 deletions

View File

@ -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"};
};

View File

@ -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
{

View File

@ -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
{

View File

@ -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.