- The alert to open the raid ranking after a boss kill, is now shown for 10 seconds (down from 40).

- Added a report button on the raid ranking panel and boss are sort alphabetically.
- Fixed some issues on the combatlog introduced on the wow patch 7.2.5 where sometimes the source of an event has no name.
- Ticket #209, fixed more issues with the comparison panel where are pets involved.
This commit is contained in:
Tercio
2017-07-05 13:01:10 -03:00
parent 180f95ba0e
commit a66ebb81b2
8 changed files with 137 additions and 30 deletions
+4 -3
View File
@@ -1320,9 +1320,10 @@ function _detalhes:StoreEncounter (combat)
my_role = "DAMAGER"
end
local raid_name = GetInstanceInfo()
local func = {_detalhes.OpenRaidHistoryWindow, _detalhes, raid_name, encounter_id, diff, my_role, guildName, 2, UnitName ("player")}
local icon = {[[Interface\AddOns\Details\images\icons]], 16, 16, false, 434/512, 466/512, 243/512, 273/512}
instance:InstanceAlert ("Boss Defeated, Open History! ", icon, 40, func, true)
local func = {_detalhes.OpenRaidHistoryWindow, _detalhes, raid_name, encounter_id, diff, my_role, guildName} --, 2, UnitName ("player")
--local icon = {[[Interface\AddOns\Details\images\icons]], 16, 16, false, 434/512, 466/512, 243/512, 273/512}
local icon = {[[Interface\PvPRankBadges\PvPRank08]], 16, 16, false, 0, 1, 0, 1}
instance:InstanceAlert (Loc ["STRING_GUILDDAMAGERANK_WINDOWALERT"], icon, 10, func, true)
end
end
else