Update object_setFixServer.sqf

missing commas
This commit is contained in:
Sandbird
2014-05-13 14:16:20 +03:00
parent 05e0df06aa
commit 08b4e53e33

View File

@@ -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";
};
};
};
};