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 +};