ACE3/addons/gunbag/functions/fnc_BIArsenalClose.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

27 lines
414 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: mjc4wilton
* Handle BI arsenal closing
*
* Arguments:
* 0: Unit <OBJECT>
*
* Return Value:
* None
*
* Example:
* [] call ace_gunbag_fnc_BIArsenalClose
*
* Public: No
*/
params ["_unit"];
if (!isNil QGVAR(arsenalCache)) then {
backpackContainer _unit setVariable [QGVAR(gunbagWeapon), GVAR(arsenalCache), true];
};
GVAR(arsenalCache) = nil;
nil