ACE3/optionals/compat_gm/XEH_preinit.sqf
Filip Maciejewski cb40de6d37
Arsenal - GM Compat - Add uniform details support (#9169)
* Arsenal - GM Compat - Add uniform details support

* Use macro for variable

* Fix typo

* Update optionals/compat_gm/XEH_preinit.sqf

Co-authored-by: mharis001 <34453221+mharis001@users.noreply.github.com>

---------

Co-authored-by: mharis001 <34453221+mharis001@users.noreply.github.com>
2023-03-15 21:02:02 +01:00

15 lines
315 B
Plaintext

#include "script_component.hpp"
ADDON = false;
PREP_RECOMPILE_START;
#include "XEH_PREP.hpp"
PREP_RECOMPILE_END;
// handle GM uniform additional insignia
[QEGVAR(arsenal,displayClosed), {
EGVAR(arsenal,center) call gm_core_characters_fnc_updateUniformDetails;
}] call CBA_fnc_addEventHandler;
ADDON = true;