- Added Devotion Aura cooldown for paladins.
- Added options for lock, unlock, break snap, close, reopen and create new window. - Added a options panel for HotCorners. - Shortcut panel is now known as Bookmarks panel, also a revamp has been done in its frames. - Fixed percent issue with Healing Done and HPS while in combat. - New API: instance:IsStarted() return if the instance have its frames built.
This commit is contained in:
@@ -128,6 +128,17 @@ function _detalhes:LoadGlobalAndCharacterData()
|
||||
else
|
||||
_detalhes_global [key] = value
|
||||
end
|
||||
|
||||
elseif (type (_detalhes_global [key]) == "table") then
|
||||
for key2, value2 in pairs (_detalhes.default_global_data [key]) do
|
||||
if (_detalhes_global [key] [key2] == nil) then
|
||||
if (type (value2) == "table") then
|
||||
_detalhes_global [key] [key2] = table_deepcopy (_detalhes.default_global_data [key] [key2])
|
||||
else
|
||||
_detalhes_global [key] [key2] = value2
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
--> copy the key from saved table to details object
|
||||
|
||||
Reference in New Issue
Block a user