From 08b4e53e33d290bee774fcdc4d3f021118825f5b Mon Sep 17 00:00:00 2001 From: Sandbird Date: Tue, 13 May 2014 14:16:20 +0300 Subject: [PATCH] Update object_setFixServer.sqf missing commas --- SQF/dayz_code/compile/object_setFixServer.sqf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SQF/dayz_code/compile/object_setFixServer.sqf b/SQF/dayz_code/compile/object_setFixServer.sqf index c45bd1c6e..71e2f2294 100644 --- a/SQF/dayz_code/compile/object_setFixServer.sqf +++ b/SQF/dayz_code/compile/object_setFixServer.sqf @@ -10,17 +10,17 @@ if (_selection != "" and local _unit) then { _unit setVariable [_strH,_damage,true]; if (_damage == 0) then { if (isServer) then { - [_unit,"repair"] call server_updateObject + [_unit,"repair"] call server_updateObject; } else { PVDZE_veh_Update = [_unit,"repair"]; publicVariableServer "PVDZE_veh_Update"; }; } else { if (isServer) then { - [_unit,"damage"] call server_updateObject + [_unit,"damage"] call server_updateObject; } else { PVDZE_veh_Update = [_unit,"damage"]; publicVariableServer "PVDZE_veh_Update"; }; }; -}; \ No newline at end of file +};