diff --git a/addons/refuel/functions/fnc_maxDistanceDropNozzle.sqf b/addons/refuel/functions/fnc_maxDistanceDropNozzle.sqf index 687af9e072..2a23b5eb99 100644 --- a/addons/refuel/functions/fnc_maxDistanceDropNozzle.sqf +++ b/addons/refuel/functions/fnc_maxDistanceDropNozzle.sqf @@ -33,7 +33,8 @@ if (_nozzle getVariable [QGVAR(jerryCan), false]) exitWith {}; ["_nozzle", (_args select 0) getVariable [QGVAR(nozzle), objNull], [objNull]] ]; - if (_unit getVariable [QGVAR(isRefueling), false]) exitWith { + if (!(_unit getVariable [QGVAR(isRefueling), false])) exitWith { + TRACE_1("player not isRefueling",_unit); [_pfID] call CBA_fnc_removePerFrameHandler; };