From f9817fb8c7d9b157cec9b4b52e68cd1d15615a8b Mon Sep 17 00:00:00 2001 From: AndreasBrostrom Date: Thu, 18 Jul 2024 22:22:20 +0200 Subject: [PATCH] fixed string category --- addons/aircrafts/initSettings.inc.sqf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/aircrafts/initSettings.inc.sqf b/addons/aircrafts/initSettings.inc.sqf index dc3691c8..ff71f824 100644 --- a/addons/aircrafts/initSettings.inc.sqf +++ b/addons/aircrafts/initSettings.inc.sqf @@ -12,7 +12,7 @@ private _category = LLSTRING(settingCategory); QGVAR(jumpSimulation), "LIST", ["Simulation Type","Combat jump simulation is a system that checks for lose equiped gear in the form of;\nnight vision googles, hats or glasses and make you lose the on a combat jump.\n None: No simulation is done.\n Basic: Lose gear unassigned.\n Advanced: Lose gear is removed."], - [_cScriptSettings, "7; Combat Jump Simulation"], + LLSTRING(settingCategory), [[0,1,2], ["None", "Basic", "Advanced"], 2], true, {}, @@ -22,7 +22,7 @@ private _category = LLSTRING(settingCategory); QEGVAR(Settings,jumpSimulationNVG), "CHECKBOX", ["Include Night Vision Googles","Include equiped Night Vison Googles in the simulation."], - [_cScriptSettings, "7; Combat Jump Simulation"], + LLSTRING(settingCategory), true, true, {}, @@ -32,7 +32,7 @@ private _category = LLSTRING(settingCategory); QEGVAR(Settings,jumpSimulationGlasses), "CHECKBOX", ["Include Non-combat Googles","Include Non-combat Googles in the simulation. This refere to sunshades and simular non-safety googles."], - [_cScriptSettings, "7; Combat Jump Simulation"], + LLSTRING(settingCategory), true, true, {}, @@ -42,7 +42,7 @@ private _category = LLSTRING(settingCategory); QEGVAR(Settings,jumpSimulationHat), "CHECKBOX", ["Include Non-combat Headgear","Include Non-combat Headgear in the simulation. This refere to hats bandanas and baretes."], - [_cScriptSettings, "7; Combat Jump Simulation"], + LLSTRING(settingCategory), true, true, {},