From a88fa06d6d184c35447efa3f6e3cd5343ba84a7b Mon Sep 17 00:00:00 2001 From: Defent Date: Tue, 25 Aug 2015 18:14:15 +0200 Subject: [PATCH] Not tested. --- scripts/DMS_cleanup.sqf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/DMS_cleanup.sqf b/scripts/DMS_cleanup.sqf index 56b8e91..6a46a77 100644 --- a/scripts/DMS_cleanup.sqf +++ b/scripts/DMS_cleanup.sqf @@ -1,5 +1,5 @@ fnc_DMS_cleanUp = { - private ["_marker","_boxes","_miscThings"]; + private ["_marker","_boxes"]; _marker = _this select 0; _objects = _this select 1; @@ -10,7 +10,7 @@ fnc_DMS_cleanUp = { if (_objects = "Clean") then { - _this enableSimulation false; + _this enableSimulation false; _this removeAllMPEventHandlers "mpkilled"; _this removeAllMPEventHandlers "mphit"; _this removeAllMPEventHandlers "mprespawn"; @@ -27,5 +27,5 @@ fnc_DMS_cleanUp = { _this = nil; }; - diag_log format ["DMS :: Markers, vehicles, AI and loot boxes and other items have been cleaned up!"]; -}; \ No newline at end of file + diag_log format ["DMS :: Markers, vehicles, AI and loot boxes and other items have been cleaned up!"]; +};