- Fixed an issue where sometimes tooltips wasn't being shown.
- Fixed a problem with overall data where it was using, even on dungoens, the raid-only 30 delay rule. - Fixed an issue with spec detection (now it may detect even faster).
This commit is contained in:
@@ -62,6 +62,10 @@
|
||||
return self [attribute]
|
||||
end
|
||||
|
||||
function combate:InstanceType()
|
||||
return _rawget (self, "instance_type")
|
||||
end
|
||||
|
||||
function combate:IsTrash()
|
||||
return _rawget (self, "is_trash")
|
||||
end
|
||||
|
||||
@@ -269,9 +269,7 @@
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
novo_objeto.flag_original = flag
|
||||
novo_objeto.serial = serial
|
||||
|
||||
end
|
||||
|
||||
local pet_blacklist = {}
|
||||
@@ -362,6 +360,8 @@
|
||||
|
||||
local novo_objeto = self.funcao_de_criacao (_, serial, nome)
|
||||
novo_objeto.nome = nome
|
||||
novo_objeto.flag_original = flag
|
||||
novo_objeto.serial = serial
|
||||
|
||||
-- tipo do container
|
||||
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
@@ -162,7 +162,7 @@ function historico:adicionar (tabela)
|
||||
end
|
||||
|
||||
if (overall_added) then
|
||||
if (tabela.is_boss and tabela:GetCombatTime() < 30) then
|
||||
if (tabela.is_boss and tabela:InstanceType() == "raid" and tabela:GetCombatTime() < 30) then
|
||||
_detalhes:Msg ("segment not added to overall (less than 30 seconds of combat time).")
|
||||
else
|
||||
if (_detalhes.debug) then
|
||||
|
||||
Reference in New Issue
Block a user