v1.4.9: Validation fixes, Profiler fix, Quest link duplicate fix, Ascension fixes

This commit is contained in:
Xurkon
2026-03-26 06:47:54 -05:00
parent 284f0c3794
commit 1fc9727fee
194 changed files with 21008 additions and 743 deletions
@@ -204,17 +204,20 @@ function QuestieOptions.tabs.general:Initialize()
desc = function() return l10n('Toggles the default Instant Quest Text option. This is just a shortcut for the WoW option in Interface.'); end,
width = 1.55,
get = function()
if GetCVar("instantQuestText") == '1' then
local val = GetCVar("instantQuestText")
if val == '1' then
return true;
else
return false;
end
end,
set = function(info, value)
if value then
SetCVar("instantQuestText", 1);
else
SetCVar("instantQuestText", 0);
if GetCVar("instantQuestText") ~= nil then
if value then
SetCVar("instantQuestText", "1");
else
SetCVar("instantQuestText", "0");
end
end
end,
},