- 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:
tercio
2014-06-30 16:11:56 -03:00
parent eb87774f40
commit 85a273aa63
18 changed files with 575 additions and 133 deletions
+11
View File
@@ -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