- added localization to "Casts" string on info panel.

- fixed pet battles auto hide.
This commit is contained in:
Tercio
2015-10-16 14:32:05 -03:00
parent be4bb1d34f
commit 172aafe193
4 changed files with 6 additions and 5 deletions
+3 -2
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -4276,7 +4276,7 @@ function atributo_damage:MontaDetalhesDamageDone (spellid, barra, instancia)
end end
local hits_string = "" .. total_hits local hits_string = "" .. total_hits
local cast_string = "Casted: " local cast_string = Loc ["STRING_CAST"] .. ": "
local misc_actor = info.instancia.showing (4, self:name()) local misc_actor = info.instancia.showing (4, self:name())
if (misc_actor) then if (misc_actor) then
+1 -1
View File
@@ -1838,7 +1838,7 @@ function atributo_heal:MontaDetalhesHealingDone (spellid, barra)
end end
local hits_string = "" .. total_hits local hits_string = "" .. total_hits
local cast_string = "Casted: " local cast_string = Loc ["STRING_CAST"] .. ": "
local misc_actor = info.instancia.showing (4, self:name()) local misc_actor = info.instancia.showing (4, self:name())
if (misc_actor) then if (misc_actor) then
+1 -1
View File
@@ -3550,7 +3550,7 @@
_detalhes.pet_battle = false _detalhes.pet_battle = false
for index, instance in _ipairs (_detalhes.tabela_instancias) do for index, instance in _ipairs (_detalhes.tabela_instancias) do
if (instance.ativa) then if (instance.ativa) then
instance:SetWindowAlphaForCombat() instance:SetCombatAlpha (nil, nil, true)
end end
end end
end end