From 43fb2613be43e1f252fac5f15680577c933369ee Mon Sep 17 00:00:00 2001 From: johnb432 <58661205+johnb432@users.noreply.github.com> Date: Fri, 2 Feb 2024 14:54:19 -0800 Subject: [PATCH] Update addons/dragging/functions/fnc_createClone.sqf Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> --- addons/dragging/functions/fnc_createClone.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/dragging/functions/fnc_createClone.sqf b/addons/dragging/functions/fnc_createClone.sqf index 8aec7f71fe..8194d9f5f1 100644 --- a/addons/dragging/functions/fnc_createClone.sqf +++ b/addons/dragging/functions/fnc_createClone.sqf @@ -18,10 +18,10 @@ params ["_unit", "_target"]; -private _posATL = getPosASL _target; +private _posATL = getPosATL _target; // Create clone -private _clone = createVehicle [QGVAR(clone), ASLToAGL _posATL, [], 0, "CAN_COLLIDE"]; +private _clone = createVehicle [QGVAR(clone), _posATL, [], 0, "CAN_COLLIDE"]; // Claim the clone [_unit, _clone] call EFUNC(common,claim);