feat(map): raise Minimap Icon Range Cutoff max to 1000

Players who run fully zoomed-out minimaps need a larger visibility radius
since quest objective spawns can be far apart. Raise the slider max from
200 to 1000 (yards). Default (100) and minimum (25) unchanged.
This commit is contained in:
Xurkon
2026-06-10 05:07:30 -05:00
parent dfdad2cbc3
commit 1b06808655
2 changed files with 3 additions and 1 deletions
@@ -534,7 +534,7 @@ function QuestieOptions.tabs.icons:Initialize()
desc = function() return l10n('How far away minimap icons can remain visible.\n(Default: %s)', optionsDefaults.profile.minimapIconRangeCutoff); end,
width = 3.1,
min = 25,
max = 200,
max = 1000,
step = 5,
disabled = function() return ((not Questie.db.profile.enabled) or (not Questie.db.profile.enableMiniMapIcons)); end,
get = function(info) return QuestieOptions:GetProfileValue(info); end,