mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
caca92f71d
* merge fire * Change required addons. Change getPos to getPosASL. Remove include * Apply suggestions from code review * Apply suggestions from code review Co-authored-by: Kyle Mckay <kymckay.dev@gmail.com> * Update addons/fire/stringtable.xml Co-authored-by: jonpas <jonpas33@gmail.com> Co-authored-by: Kyle Mckay <kymckay.dev@gmail.com>
20 lines
666 B
Plaintext
20 lines
666 B
Plaintext
[
|
|
QGVAR(enabled), "CHECKBOX",
|
|
["STR_A3_OPTIONS_ENABLED", LSTRING(setting_description)],
|
|
LSTRING(category_displayName),
|
|
true, // default value
|
|
true, // isGlobal
|
|
{[QGVAR(fireEnabled), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
true // Needs mission restart
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(enableFlare), "CHECKBOX",
|
|
[LSTRING(setting_flareEnable), LSTRING(setting_flareDescription)],
|
|
LSTRING(category_displayName),
|
|
false, // default value
|
|
true, // isGlobal
|
|
{[QGVAR(flareEnabled), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
true // Needs mission restart
|
|
] call CBA_settings_fnc_init;
|