Commit 45925317 authored by Ivaria's avatar Ivaria
Browse files

Merge branch 'master' into tbcc

parents 81d39b0f 487a2521
......@@ -519,6 +519,8 @@ function VUHDO_initDebuffs()
if not VUHDO_CONFIG then VUHDO_CONFIG = _G["VUHDO_CONFIG"]; end
twipe(VUHDO_CUSTOM_DEBUFF_CONFIG);
for _, tDebuffName in pairs(VUHDO_CONFIG["CUSTOM_DEBUFF"]["STORED"]) do
if not VUHDO_CUSTOM_DEBUFF_CONFIG[tDebuffName] then
VUHDO_CUSTOM_DEBUFF_CONFIG[tDebuffName] = { };
......
......@@ -2537,8 +2537,8 @@ function VUHDO_loadProfileNoInit(aName)
end
-- @TODO: Warum werden die nicht direkt geladen (ipairs-Problem?)
if tProfile["CONFIG"]["CUSTOM_DEBUFF"] and tProfile["CONFIG"]["CUSTOM_DEBUFF"]["STORED"] and VUHDO_CONFIG["CUSTOM_DEBUFF"] then
VUHDO_CONFIG["CUSTOM_DEBUFF"]["STORED"] = VUHDO_deepCopyTable(tProfile["CONFIG"]["CUSTOM_DEBUFF"]["STORED"]);
if tProfile["CONFIG"]["CUSTOM_DEBUFF"] and VUHDO_CONFIG["CUSTOM_DEBUFF"] then
VUHDO_CONFIG["CUSTOM_DEBUFF"] = VUHDO_deepCopyTable(tProfile["CONFIG"]["CUSTOM_DEBUFF"]);
end
if tProfile["CONFIG"]["SPELL_TRACE"] and VUHDO_CONFIG["SPELL_TRACE"] then
......
......@@ -30,6 +30,7 @@ Known issues:
Bugfixes:
-- Fixed minimap icon visibility toggle
-- Fixed loading of custom debuff settings on profile change
Improvements:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment