Update DMS_cleanup.sqf

This commit is contained in:
Defent 2015-08-26 21:25:45 +02:00
parent 7257d98213
commit a76124216f

View File

@ -1,5 +1,4 @@
fnc_DMS_cleanUp = {
_this enableSimulation false;
_this removeAllMPEventHandlers "mpkilled";
_this removeAllMPEventHandlers "mphit";
@ -11,10 +10,10 @@ fnc_DMS_cleanUp = {
_this removeAllEventHandlers "GetOut";
_this removeAllEventHandlers "GetIn";
_this removeAllEventHandlers "Local";
// clearVehicleInit _this;
// clearVehicleInit _this;
deleteVehicle _this;
deleteGroup (group _this);
_this = nil;
diag_log format ["DMS :: Markers, vehicles, AI and loot boxes and other items have been cleaned up!"];
diag_log format ["DMS :: Markers, vehicles, AI and loot boxes and other items have been cleaned up!"];
};