Add better logging for server_deleteObj

This commit is contained in:
A Man
2020-04-03 14:54:58 +02:00
parent ad41a9a7f4
commit f6e7a1a91e
6 changed files with 32 additions and 26 deletions

View File

@@ -5,7 +5,7 @@ _objectID = _obj getVariable ["ObjectID","0"];
_objectUID = _obj getVariable ["ObjectUID","0"];
if (isServer) then {
[_objectID,_objectUID] call server_deleteObjDirect;
[_objectID,_objectUID,_obj] call server_deleteObjDirect;
} else {
if (count _this == 2) then {
//single use trap triggered, remove with no animation
@@ -14,4 +14,4 @@ if (isServer) then {
publicVariableServer "PVDZ_obj_Destroy";
//deleteVehicle _obj;
};
};
};