- 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
+2 -1
View File
@@ -35,7 +35,8 @@ function historico:adicionar_overall (tabela)
--> store the segments added to the overall data
_detalhes.tabela_overall.segments_added = _detalhes.tabela_overall.segments_added or {}
tinsert (_detalhes.tabela_overall.segments_added, 1, {name = tabela:GetCombatName (true), elapsed = tabela:GetCombatTime(), clock = tabela:GetDate()[1]})
local this_clock = tabela.data_inicio
tinsert (_detalhes.tabela_overall.segments_added, 1, {name = tabela:GetCombatName (true), elapsed = tabela:GetCombatTime(), clock = this_clock})
if (#_detalhes.tabela_overall.segments_added > 20) then
tremove (_detalhes.tabela_overall.segments_added, 21)