From 77ae24ac065e72c2274c207461235d948fbb70c7 Mon Sep 17 00:00:00 2001 From: Soultechnology Date: Sun, 21 Jul 2024 00:58:41 +0100 Subject: [PATCH] Update initSettings.inc.sqf --- addons/viewdistance/initSettings.inc.sqf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/viewdistance/initSettings.inc.sqf b/addons/viewdistance/initSettings.inc.sqf index 4a1d938dba6..48db9113b96 100644 --- a/addons/viewdistance/initSettings.inc.sqf +++ b/addons/viewdistance/initSettings.inc.sqf @@ -12,7 +12,7 @@ private _category = format ["ACE %1", localize LSTRING(Module_DisplayName)]; QGVAR(viewDistanceOnFoot), "SLIDER", [LSTRING(onFoot_DisplayName), format ["%1\n%2", LLSTRING(onFoot_Description), LLSTRING(sliderExtraDescription)]], _category, - [0, 40000, 0, -1], + [0, 20000, 0, -1], 0, {[true] call FUNC(adaptViewDistance)} ] call CBA_fnc_addSetting; @@ -21,7 +21,7 @@ private _category = format ["ACE %1", localize LSTRING(Module_DisplayName)]; QGVAR(viewDistanceLandVehicle), "SLIDER", [LSTRING(landVehicle_DisplayName), format ["%1\n%2", LLSTRING(landVehicle_Description), LLSTRING(sliderExtraDescription)]], _category, - [0, 40000, 0, -1], + [0, 20000, 0, -1], 0, {[true] call FUNC(adaptViewDistance)} ] call CBA_fnc_addSetting; @@ -30,7 +30,7 @@ private _category = format ["ACE %1", localize LSTRING(Module_DisplayName)]; QGVAR(viewDistanceAirVehicle), "SLIDER", [LSTRING(airVehicle_DisplayName), format ["%1\n%2", LLSTRING(airVehicle_Description), LLSTRING(sliderExtraDescription)]], _category, - [0, 40000, 0, -1], + [0, 20000, 0, -1], 0, {[true] call FUNC(adaptViewDistance)} ] call CBA_fnc_addSetting; @@ -39,7 +39,7 @@ private _category = format ["ACE %1", localize LSTRING(Module_DisplayName)]; QGVAR(limitViewDistance), "SLIDER", [LSTRING(limit_DisplayName), LSTRING(limit_setting)], _category, - [500, 40000, 10000, -1], + [500, 20000, 10000, -1], 0, {[true] call FUNC(adaptViewDistance)} ] call CBA_fnc_addSetting;