Merge pull request #1267 from Sandbird/patch-1

Update object_setFixServer.sqf
This commit is contained in:
vbawol
2014-05-13 08:14:46 -05:00

View File

@@ -10,17 +10,17 @@ if (_selection != "" and local _unit) then {
_unit setVariable [_strH,_damage,true]; _unit setVariable [_strH,_damage,true];
if (_damage == 0) then { if (_damage == 0) then {
if (isServer) then { if (isServer) then {
[_unit,"repair"] call server_updateObject [_unit,"repair"] call server_updateObject;
} else { } else {
PVDZE_veh_Update = [_unit,"repair"]; PVDZE_veh_Update = [_unit,"repair"];
publicVariableServer "PVDZE_veh_Update"; publicVariableServer "PVDZE_veh_Update";
}; };
} else { } else {
if (isServer) then { if (isServer) then {
[_unit,"damage"] call server_updateObject [_unit,"damage"] call server_updateObject;
} else { } else {
PVDZE_veh_Update = [_unit,"damage"]; PVDZE_veh_Update = [_unit,"damage"];
publicVariableServer "PVDZE_veh_Update"; publicVariableServer "PVDZE_veh_Update";
}; };
}; };
}; };