ACE3/addons/optionsmenu/XEH_postInit.sqf

12 lines
326 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
2016-05-24 13:13:11 +00:00
["ace_settingsInitialized", {
2015-11-30 16:21:28 +00:00
GVAR(categories) pushBack ""; //Ensure All Catagories is at top
{
if !(_x select 8 in GVAR(categories)) then {
2015-11-30 16:21:28 +00:00
GVAR(categories) pushBack (_x select 8);
};
2015-11-30 16:23:48 +00:00
}forEach EGVAR(common,settings);
}] call CBA_fnc_addEventHandler;