diff --git a/@ExileServer/addons/a3_dms/missions/bandit/mercbase.sqf b/@ExileServer/addons/a3_dms/missions/bandit/mercbase.sqf index 5e6b146..2cd6422 100644 --- a/@ExileServer/addons/a3_dms/missions/bandit/mercbase.sqf +++ b/@ExileServer/addons/a3_dms/missions/bandit/mercbase.sqf @@ -130,7 +130,7 @@ _msgWIN = ['#0080ff',"Convicts have successfully assaulted the Mercenary Base an _msgLOSE = ['#FF0000',"Seems like the Mercenaries packed up and drove away..."]; // Define mission name (for map marker and logging) -_missionName = "Mercenary Base"; +_missionName = "Mercenary Outpost"; // Create Markers _markers = diff --git a/@ExileServer/addons/a3_dms/scripts/fn_SpawnMinefield.sqf b/@ExileServer/addons/a3_dms/scripts/fn_SpawnMinefield.sqf index 3872659..44156a1 100644 --- a/@ExileServer/addons/a3_dms/scripts/fn_SpawnMinefield.sqf +++ b/@ExileServer/addons/a3_dms/scripts/fn_SpawnMinefield.sqf @@ -49,7 +49,7 @@ if (DMS_SpawnMinesAroundMissions) then private _minesInfo = if (_difficulty isEqualType "") then { - _minesInfo = missionNamespace getVariable [format ["DMS_MineInfo_%1", _difficulty], [10,50]]; + missionNamespace getVariable [format ["DMS_MineInfo_%1", _difficulty], [10,50]]; } else { diff --git a/README.md b/README.md index a60a847..acf6251 100644 --- a/README.md +++ b/README.md @@ -150,6 +150,11 @@ ___ # Changelog: ### Test Branch: +#### June 16, 2016 (1:55 PM CST-America) **Release Candidate 1.3**: +* Renamed the "mercbase.sqf" mission title to "Mercenary Outpost" to avoid confusion with the salt flats mission. +* Fixed an issue with fn_SpawnMineField.sqf (thanks to CEN for providing important info) + + #### June 12, 2016 (3:15 AM CST-America) **Release Candidate 1.2**: * Removed the marker color check in "DMS_fnc_CreateMarker". Invalid marker colors are up to server owners to detect. * Micro-optimized "DMS_fnc_IsPosBlacklisted" for the rectangular blacklist case; also rearranged the statements to be clearer and easier to understand.