- Fixed some issues with spec detection and LibGroupInSpecT-1.1 has need enabled back again.

- Fixed an issue with micro displays not loading settings after a logon.
- Another wave of workarounds to prevent the client image cache bug.
This commit is contained in:
Tercio
2016-07-29 18:57:41 -03:00
parent bd0bb3b7d2
commit c2d48ab057
34 changed files with 411 additions and 239 deletions
+13
View File
@@ -3405,6 +3405,19 @@ SPELL_POWER_OBSOLETE2 = 15;
return _detalhes.parser_functions:ZONE_CHANGED_NEW_AREA (...)
end
function _detalhes.parser_functions:PLAYER_SPECIALIZATION_CHANGED()
local specIndex = GetSpecialization()
if (specIndex) then
local specID = GetSpecializationInfo (specIndex)
if (specID and specID ~= 0) then
local guid = UnitGUID ("player")
if (guid) then
_detalhes.cached_specs [guid] = specID
end
end
end
end
-- ~encounter
function _detalhes.parser_functions:ENCOUNTER_START (...)