- Added an option for change the amount of lines on death log.
- Added custom display for CC done.
This commit is contained in:
@@ -411,6 +411,10 @@
|
||||
|
||||
if (not _detalhes.tabela_vigente.is_boss) then
|
||||
|
||||
if (_detalhes.tabela_vigente.is_pvp) then
|
||||
_detalhes:FlagActorsOnPvPCombat()
|
||||
end
|
||||
|
||||
local in_instance = IsInInstance() --> garrison returns party as instance type.
|
||||
if ((InstanceType == "party" or InstanceType == "raid") and in_instance) then
|
||||
_detalhes.tabela_vigente.is_trash = true
|
||||
@@ -875,6 +879,14 @@
|
||||
|
||||
end
|
||||
|
||||
function _detalhes:FlagActorsOnPvPCombat()
|
||||
for class_type, container in _ipairs (_detalhes.tabela_vigente) do
|
||||
for _, actor in _ipairs (container._ActorTable) do
|
||||
actor.pvp_component = true
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
function _detalhes:FlagActorsOnBossFight()
|
||||
for class_type, container in _ipairs (_detalhes.tabela_vigente) do
|
||||
for _, actor in _ipairs (container._ActorTable) do
|
||||
|
||||
Reference in New Issue
Block a user