diff --git a/addons/firesupport/XEH_preInit.sqf b/addons/firesupport/XEH_preInit.sqf index fa206c5..ee26460 100644 --- a/addons/firesupport/XEH_preInit.sqf +++ b/addons/firesupport/XEH_preInit.sqf @@ -58,7 +58,7 @@ GVAR(trpMarkers) = []; [localize "STR_tun_firesupport_cba_alwaysShowTRPmarkers", localize "STR_tun_firesupport_cba_alwaysShowTRPmarkers_tooltip"], // Display name or display name + tooltip (optional, default: same as setting name) localize "STR_tun_firesupport_cba_Category_main", // Category for the settings menu + optional sub-category true, // Extra properties of the setting depending of _settingType. - 1, // 1: all clients share the same setting, 2: setting can't be overwritten (optional, default: 0) + 0, // 1: all clients share the same setting, 2: setting can't be overwritten (optional, default: 0) {}, // Script to execute when setting is changed. (optional) true //Setting will be marked as needing mission restart after being changed. (optional, default false) ] call CBA_Settings_fnc_init; @@ -80,7 +80,7 @@ GVAR(trpMarkers) = []; [localize "STR_tun_firesupport_cba_debug", localize "STR_tun_firesupport_cba_debug"], // Display name or display name + tooltip (optional, default: same as setting name) localize "STR_tun_firesupport_cba_Category_main", // Category for the settings menu + optional sub-category false, // Extra properties of the setting depending of _settingType. - 0, // 1: all clients share the same setting, 2: setting can't be overwritten (optional, default: 0) + 1, // 1: all clients share the same setting, 2: setting can't be overwritten (optional, default: 0) {}, // Script to execute when setting is changed. (optional) false //Setting will be marked as needing mission restart after being changed. (optional, default false) ] call CBA_Settings_fnc_init; diff --git a/addons/firesupport/script_component.hpp b/addons/firesupport/script_component.hpp index 96a3d8b..a688471 100644 --- a/addons/firesupport/script_component.hpp +++ b/addons/firesupport/script_component.hpp @@ -3,8 +3,8 @@ #define MAJOR 2 #define MINOR 1 -#define PATCHLVL 0 -#define BUILD 05062022 +#define PATCHLVL 3 +#define BUILD 19032023 #define VERSION MAJOR.MINOR.PATCHLVL.BUILD #define VERSION_AR MAJOR,MINOR,PATCHLVL,BUILD