Allow repairing from slingload pods (#5316)

This commit is contained in:
PabstMirror 2017-07-08 14:01:05 -05:00 committed by GitHub
parent cddc34e08a
commit cb911c91ef

View File

@ -18,11 +18,9 @@
params ["_unit"]; params ["_unit"];
TRACE_1("params",_unit); TRACE_1("params",_unit);
private ["_nearObjects", "_return"]; private _nearObjects = nearestObjects [_unit, ["Air", "LandVehicle", "Slingload_base_F"], 20];
_nearObjects = nearestObjects [_unit, ["Air","LandVehicle"], 20]; private _return = false;
_return = false;
{ {
if ([_x] call FUNC(isRepairVehicle)) exitWith {_return = true;}; if ([_x] call FUNC(isRepairVehicle)) exitWith {_return = true;};
} forEach _nearObjects; } forEach _nearObjects;