Details crowd control done

for some reason it just stopped working…at the end of an m+ run I like looking at a lot of overall meters…Dmg/dps, heals, dmg taken, interrupts, dispels and CC done. For some reason the “crowd control done” script just stopped working. Anyone know how to fix this

Addons like bugsack might be able to get error info that would help folks here help you.

Also is this a script addon for Details? Where did it come from, or is it native to Details?

2 Likes

I installed bugsack but it’s not showing any bugs related to Details…it is for other addons

I’m gonna try uninstalling it and reinstalling it hopefully that works

I am having the same issue. For the past few days, CC done and received is not working on my details. No bugs detected with the addon. Would be nice to know if this is a widespread issue. Hopefully it was just an issue with last update and the addon creator will fix it this week.

1 Like

+1 happening to me too

having the same issue, been going on for the past few days.

local combat, instance_container, instance = ...
local total, top, amount = 0, 0, 0

local misc_actors = combat:GetActorList (DETAILS_ATTRIBUTE_MISC)
for index, character in ipairs(misc_actors) do
if (character.cc_done and character:IsPlayer()) then
    local cc_done = abs(floor(character.cc_done)) -- just added abs         instance_container:AddValue (character, cc_done)
    total = total + cc_done
    if (cc_done > top) then
        top = cc_done
    end
    amount = amount + 1
end
end
return total, top, amount

I just looked at the sript that gets the totals with out looking at the values is flooring i thought id wrap it in an absolute in case something screed up and it was getting negative numbers, not caliming this is a fix but if you edit the script and try it it shouldnt break anything

+1 happens to me too