From c0eff73d0f8882bbfc6ec00185121cf4baa33a0b Mon Sep 17 00:00:00 2001 From: Merlijn Date: Mon, 4 Nov 2019 20:47:35 +0100 Subject: [PATCH] Fix typo --- SQF/dayz_server/compile/updateObject_functions.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQF/dayz_server/compile/updateObject_functions.sqf b/SQF/dayz_server/compile/updateObject_functions.sqf index 9686982ed..994eac01e 100644 --- a/SQF/dayz_server/compile/updateObject_functions.sqf +++ b/SQF/dayz_server/compile/updateObject_functions.sqf @@ -144,7 +144,7 @@ server_obj_killed = { if ((dayz_serverClientKeys select _index) select 1 != _clientKey) exitwith { format["Server_UpdateObject error: CLIENT AUTH KEY INCORRECT OR UNRECOGNIZED. PV ARRAY: %1",_this] }; - if (alive _object or {!(_class isKindOf "TentStorage_base" or _class isKindOf "IC_Tent")}) exitwith { + if (alive _object and {!(_class isKindOf "TentStorage_base" or _class isKindOf "IC_Tent")}) exitwith { format["Server_UpdateObject error: object kill request on living object. PV ARRAY: %1",_this] }; "";