This commit is contained in:
eraser1 2016-06-16 13:53:54 -05:00
parent 456c6f84e8
commit e1f9a44604
3 changed files with 7 additions and 2 deletions

View File

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

View File

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

View File

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