- Added a new panel to open the Chart after a mythic dungeon.

- Improvements on Encounter Details plugin.
This commit is contained in:
Tercio
2018-09-11 19:57:17 -03:00
parent 3f18a99d42
commit ed8aaee352
11 changed files with 298 additions and 276 deletions
+17
View File
@@ -1851,6 +1851,19 @@ inspect_frame:SetScript ("OnEvent", function (self, event, ...)
ilvl_core:ScheduleTimer ("CalcItemLevel", 4, t)
ilvl_core:ScheduleTimer ("CalcItemLevel", 8, t)
end
else
if (IsInRaid()) then
--get the unitID
local serial = ...
if (serial and type (serial) == "string") then
for i = 1, GetNumGroupMembers() do
if (UnitGUID ("raid" .. i) == serial) then
ilvl_core:ScheduleTimer ("CalcItemLevel", 2, {"raid" .. i, serial})
ilvl_core:ScheduleTimer ("CalcItemLevel", 4, {"raid" .. i, serial})
end
end
end
end
end
end)
@@ -2119,6 +2132,10 @@ if (LibGroupInSpecT) then
end
_detalhes.cached_talents [guid] = talents
if (_detalhes.debug) then
_detalhes:Msg ("(debug) received GroupInSpecT_Update from user", guid)
end
--> update spec
if (info.global_spec_id and info.global_spec_id ~= 0) then
if (not _detalhes.class_specs_coords [info.global_spec_id]) then