From 2d472f8bad5737d2ea0b303d900f92699cbafe72 Mon Sep 17 00:00:00 2001 From: Brett Date: Tue, 24 May 2022 17:01:26 -0600 Subject: [PATCH] Fix bug in CBA_fnc_setLoadout Should've not gotten distracted with Reforger and got stuff done on this, would've caught it before release. Nothing is using this right now anyway, hotfix before anyone tries to use it? --- addons/loadout/fnc_setLoadout.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/loadout/fnc_setLoadout.sqf b/addons/loadout/fnc_setLoadout.sqf index 1d61a4450..e2308546f 100644 --- a/addons/loadout/fnc_setLoadout.sqf +++ b/addons/loadout/fnc_setLoadout.sqf @@ -36,4 +36,4 @@ _unit setUnitLoadout [_loadoutArray, _fullMagazines]; if (_extendedInfo isEqualType []) then { _extendedInfo = createHashMapFromArray _extendedInfo; }; -["CBA_loadoutSet", [_unit, _loadout, _extendedInfo]] call CBA_fnc_localEvent; +["CBA_loadoutSet", [_unit, _loadoutArray, _extendedInfo]] call CBA_fnc_localEvent;