From db7bdf1ecdbb34cd34738a5e4599afa1f1993fe8 Mon Sep 17 00:00:00 2001 From: hizumi <> Date: Sun, 26 May 2024 16:36:47 -0500 Subject: [PATCH] Update fn_createBox.sqf fix incorrect ace variable name. fixes #47. --- framework/resupply/functions/fn_createBox.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/resupply/functions/fn_createBox.sqf b/framework/resupply/functions/fn_createBox.sqf index 6bbfbb9..49f3f0d 100644 --- a/framework/resupply/functions/fn_createBox.sqf +++ b/framework/resupply/functions/fn_createBox.sqf @@ -162,7 +162,7 @@ if (isNil "_items") exitWith { [_box,1] call ace_cargo_fnc_setSize; // ignore weight restrictions for carry/drag -_box setVariable ["ace_ignoreWeightCarry", true, true]; +_box setVariable ["ace_dragging_ignoreWeightCarry", true, true]; // Return the box _box; \ No newline at end of file