ACE3/addons/optionsmenu/XEH_postInit.sqf

12 lines
328 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
["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 EFUNC(common,addEventHandler);