- Advanced Death Logs plugin got updates on Endurance Player Value and few bug fixes.

- Max Window Amount options can new be set to 1, before the minimum was 3.
- Fixed a problem with friendly fire tooltip where sometimes it doesn't show up.
- Fixed cooldowns tooltip which wasn't showing rounded numbers (49.99 instead of 50).
- Fixed Warrior's Shield Block which wasn't being count as a cooldown.
- Fixed a problem where sometimes when a hunter pull and reset the boss right after, was causing segments to merge.
This commit is contained in:
tercio
2014-12-11 12:36:12 -02:00
parent 6b9ecf4a4a
commit 47bc71010c
11 changed files with 93 additions and 34 deletions
+6 -3
View File
@@ -1965,9 +1965,12 @@ function atributo_damage:ToolTip_FriendlyFire (instancia, numero, barra, keydown
local Skills = {}
for target_name, ff_table in _pairs (FriendlyFire) do
DamagedPlayers [#DamagedPlayers+1] = {target_name, ff_table.total, combat (1, target_name).classe}
for spellid, amount in _pairs (ff_table.spells) do
Skills [#Skills+1] = {spellid, amount}
local actor = combat (1, target_name)
if (actor) then
DamagedPlayers [#DamagedPlayers+1] = {target_name, ff_table.total, actor.classe}
for spellid, amount in _pairs (ff_table.spells) do
Skills [#Skills+1] = {spellid, amount}
end
end
end