- Player Detail Window now follows number format chosen on options panel.

- ElvUI skin for Player Detail Window won't use anymore raid members portrait.
- fix for ticket #43 'lua error occured in KoKR client'.
- fix for ticket #42 'It seems to be absent image file in spec changed notification'.
- fix for ticket #41 'An error occurs in Archimonde encounter (koKR)'.
This commit is contained in:
Tercio
2015-07-05 14:09:21 -03:00
parent 47861286d4
commit ba1fdfb94e
7 changed files with 38 additions and 23 deletions
+6 -3
View File
@@ -2721,7 +2721,8 @@ function atributo_damage:MontaInfoDamageTaken()
texCoords = _detalhes.class_coords ["UNKNOW"]
end
self:UpdadeInfoBar (barra, index, tabela[1], tabela[1], tabela[2], _detalhes:comma_value (tabela[2]), max_, tabela[3], "Interface\\AddOns\\Details\\images\\classes_small_alpha", true, texCoords, nil, tabela[4])
local formated_value = SelectedToKFunction (_, _math_floor (tabela[2]))
self:UpdadeInfoBar (barra, index, tabela[1], tabela[1], tabela[2], formated_value, max_, tabela[3], "Interface\\AddOns\\Details\\images\\classes_small_alpha", true, texCoords, nil, tabela[4])
end
end
@@ -2872,9 +2873,11 @@ function atributo_damage:MontaInfoDamageDone()
local name = tabela[4]
if (info.sub_atributo == 2) then
self:UpdadeInfoBar (barra, index, tabela[1], name, tabela[2], _detalhes:comma_value (_math_floor (tabela[2]/meu_tempo)), max_, tabela[3], tabela[5], true, nil, tabela [7])
local formated_value = SelectedToKFunction (_, _math_floor (tabela[2]/meu_tempo))
self:UpdadeInfoBar (barra, index, tabela[1], name, tabela[2], formated_value, max_, tabela[3], tabela[5], true, nil, tabela [7])
else
self:UpdadeInfoBar (barra, index, tabela[1], name, tabela[2], _detalhes:comma_value (tabela[2]), max_, tabela[3], tabela[5], true, nil, tabela [7])
local formated_value = SelectedToKFunction (_, _math_floor (tabela[2]))
self:UpdadeInfoBar (barra, index, tabela[1], name, tabela[2], formated_value, max_, tabela[3], tabela[5], true, nil, tabela [7])
end
self:FocusLock (barra, tabela[1])