range check fix class colors

This commit is contained in:
Sumsebrum
2021-06-16 14:10:49 +02:00
parent f0c0286708
commit 993de572cd
3 changed files with 8 additions and 5 deletions

View File

@ -64,8 +64,8 @@ end
function RangeCheck:ResetUnit(unit)
local button = Gladdy.buttons[unit]
self:CancelTimer(button)
button.lastState = 0
self:SetColor(button, 1)
button.classColors = {}
end
function RangeCheck:Test(unit)
@ -99,7 +99,7 @@ function RangeCheck:SetColor(button, oorFac)
return
end
if not button.classColors then
if not button.classColors.r then
if button.class then
button.classColors = { r = RAID_CLASS_COLORS[button.class].r, g = RAID_CLASS_COLORS[button.class].g, b = RAID_CLASS_COLORS[button.class].b }
else