diff --git a/@ExileServer/addons/a3_dms/fn_DMS_preInit.sqf b/@ExileServer/addons/a3_dms/fn_DMS_preInit.sqf index aa68edd..6e2ed2e 100644 --- a/@ExileServer/addons/a3_dms/fn_DMS_preInit.sqf +++ b/@ExileServer/addons/a3_dms/fn_DMS_preInit.sqf @@ -7,7 +7,7 @@ DMS_HC_Object = objNull; DMS_CleanUpList = []; -DMS_Version = "December 24 2015 (Vish Version)"; +DMS_Version = "December 24 2015 (Vish Version + Derp fix)"; //Load main config diff --git a/@ExileServer/addons/a3_dms/scripts/fn_AddMissionToMonitor.sqf b/@ExileServer/addons/a3_dms/scripts/fn_AddMissionToMonitor.sqf index 43af49b..fcbbfec 100644 --- a/@ExileServer/addons/a3_dms/scripts/fn_AddMissionToMonitor.sqf +++ b/@ExileServer/addons/a3_dms/scripts/fn_AddMissionToMonitor.sqf @@ -192,6 +192,7 @@ try if (DMS_MarkerText_ShowAICount) then { + _markerDot = _markers select 0; _markerDot setMarkerText (format ["%1 (%2 %3 remaining)",markerText _markerDot,count _units,DMS_MarkerText_AIName]); }; diff --git a/@ExileServer/addons/a3_dms/scripts/fn_AddMissionToMonitor_Static.sqf b/@ExileServer/addons/a3_dms/scripts/fn_AddMissionToMonitor_Static.sqf index f459ad9..748fd34 100644 --- a/@ExileServer/addons/a3_dms/scripts/fn_AddMissionToMonitor_Static.sqf +++ b/@ExileServer/addons/a3_dms/scripts/fn_AddMissionToMonitor_Static.sqf @@ -194,6 +194,7 @@ try if (DMS_MarkerText_ShowAICount) then { + _markerDot = _markers select 0; _markerDot setMarkerText (format ["%1 (%2 %3 remaining)",markerText _markerDot,count (_inputUnits call DMS_fnc_GetAllUnits),DMS_MarkerText_AIName]); }; diff --git a/@ExileServer/addons/a3_dms/scripts/fn_FillCrate.sqf b/@ExileServer/addons/a3_dms/scripts/fn_FillCrate.sqf index 2efd5df..2d74841 100644 --- a/@ExileServer/addons/a3_dms/scripts/fn_FillCrate.sqf +++ b/@ExileServer/addons/a3_dms/scripts/fn_FillCrate.sqf @@ -109,9 +109,9 @@ if !(DMS_GodmodeCrates) then _crate allowDamage true; }; +_crate enableSimulationGlobal true; if (DMS_EnableBoxMoving) then { - _crate enableSimulationGlobal true; _crate enableRopeAttach true; }; diff --git a/README.md b/README.md index 6c9f568..8133193 100644 --- a/README.md +++ b/README.md @@ -116,6 +116,19 @@ ___ ___ # Changelog: +#### December 24, 2015 (1:45 PM CST-America): +* Fixed an issue where you couldn't take stuff out of a crate if you had "DMS_EnableBoxMoving" set to "false". Thanks to [Flowrider](http://www.exilemod.com/profile/31-flowrider85/) for the report. +* Fixed a couple script errors caused by a hasty adjustment in the last update. + + + +#### December 24, 2015 (4:30 PM CST-America | Special Vishpala edition ;D ): +* **NEW CONFIG VALUE: DMS_MissionMarkerCount** +* "dynamicTextRequest" is now enabled by default instead of "textTilesRequest" because of performance issues. +* DMS should now be compatible with more/less than two markers as long as you change "DMS_MissionMarkerCount", without having to change multiple files :P + + + #### December 24, 2015 (1:45 PM CST-America): * **NEW CONFIG VALUES:**