I guess there's no option for it. Meanwhile I've managed a workaround for anyone else wanting this. I changed this function at line 140 in StatusAuras.lua
local function status_IsInactive(self, unit) -- used for "missing" status
return not self.states[unit]
end
to
local function status_IsInactive(self, unit) -- used for "missing" status
if not Grid2:UnitIsPet(unit) then
return not self.states[unit]
end
end
I have a raid buff status which shows only when missing, pets however cannot receive raid buffs so they always show up as missing on pets. I might be blind but I can seem to find an option to filter pets so that these indicators do not show. Thanks for any help.
0
to
0
0