From 2cf2cb0e59b0e8326b76da9743e74ab69ecdbf80 Mon Sep 17 00:00:00 2001 From: PabstMirror Date: Thu, 4 Feb 2016 01:31:12 -0600 Subject: [PATCH] Fix statusEffect error in refuel --- addons/refuel/functions/fnc_returnNozzle.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/refuel/functions/fnc_returnNozzle.sqf b/addons/refuel/functions/fnc_returnNozzle.sqf index 0cbb56967c..a1f1581c90 100644 --- a/addons/refuel/functions/fnc_returnNozzle.sqf +++ b/addons/refuel/functions/fnc_returnNozzle.sqf @@ -33,7 +33,7 @@ if (isNull _nozzle || {_source != _target}) exitWith {false}; _args params ["_unit", "_nozzle", "_target"]; _unit setVariable [QGVAR(nozzle), nil]; detach _nozzle; - [_unit, "ACE_refuel", false] call EFUNC(common,statusEffect_set); + [_unit, "forceWalk", "ACE_refuel", false] call EFUNC(common,statusEffect_set); REFUEL_UNHOLSTER_WEAPON _unit setVariable [QGVAR(isRefueling), false]; _actionID = _unit getVariable [QGVAR(ReleaseActionID), -1];