mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
20 lines
386 B
Plaintext
20 lines
386 B
Plaintext
|
#include "script_component.hpp"
|
||
|
#include "..\defines.hpp"
|
||
|
/*
|
||
|
* Author: Brett Mayson
|
||
|
* Refreshes the arsenal to show external changes
|
||
|
*
|
||
|
* Return Value:
|
||
|
* None
|
||
|
*
|
||
|
* Public: No
|
||
|
*/
|
||
|
|
||
|
private _display = findDisplay IDD_ace_arsenal;
|
||
|
|
||
|
call FUNC(updateCurrentItemsList);
|
||
|
|
||
|
call FUNC(updateUniqueItemsList);
|
||
|
|
||
|
[_display, _display displayCtrl GVAR(currentLeftPanel)] call FUNC(fillLeftPanel);
|