lazy evaluation fix

This commit is contained in:
gienkov 2016-02-09 09:35:16 +01:00
parent 56e919dccc
commit 8048b2ecbd

View File

@ -22,5 +22,6 @@ params ["_unit", "_target"];
_nozzle = _unit getVariable [QGVAR(nozzle), objNull];
!(isNull _nozzle ||
{isEngineOn _target} ||
{(_target distance _unit) > REFUEL_ACTION_DISTANCE} ||
{!isNull (_target getVariable [QGVAR(nozzle), objNull])} || isEngineOn _target) // TODO verify cant connect multiple fuel lines
{!isNull (_target getVariable [QGVAR(nozzle), objNull])}) // TODO verify cant connect multiple fuel lines