Ready Checks
Kyrgune opened this issue ยท 4 comments
I am not seeing the ready checks, not ready checks or the "?" for have not clicked either in the raid frames or party frames.
I assume Blizzard broke/changed something since it doesn't show on older zperl versions as well
My friend helped me find a solution for this problem, @Resike (Sorry about the ping!)
Go into ZPerl.lua and replace line 3810 to 3824 with
function XPerl_Unit_UpdateReadyState(self)
local status = conf.showReadyCheck and self.partyid and GetReadyCheckStatus(self.partyid)
if (status) then
self.statsFrame.ready:Show()
if (status == "ready") then
self.statsFrame.ready.check:SetAtlas(READY_CHECK_READY_TEXTURE)
elseif (status == "waiting") then
self.statsFrame.ready.check:SetAtlas(READY_CHECK_WAITING_TEXTURE)
else -- "notready"
self.statsFrame.ready.check:SetAtlas(READY_CHECK_NOT_READY_TEXTURE)
end
else
self.statsFrame.ready:Hide()
end
end
Then it will show again, basically just replace SetTexture with SetAtlas ๐