mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
27 lines
411 B
Plaintext
27 lines
411 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
|