# HG changeset patch # User Vynn # Date 1490928728 14400 # Node ID e801ab5c2e1beb67037536b992d9a697388f8235 # Parent 7ddddfad8e7131887446626d1a91b432b52ac71f Bug fix - completed appearences were still showing in LDB tooltip - not anymore! (Thanks for the report pros4c!) diff -r 7ddddfad8e71 -r e801ab5c2e1b Spotlight.lua --- a/Spotlight.lua Thu Mar 30 22:50:45 2017 -0400 +++ b/Spotlight.lua Thu Mar 30 22:52:08 2017 -0400 @@ -118,7 +118,9 @@ function dataobj:OnTooltipShow() self:AddLine("|cffe5cc80Spotlight - Hidden Artifact Skins|r|n|n"); for k, v in pairs(Spotlight.IDs) do - self:AddDoubleLine(k .. ":", Spotlight.Format(k, false) .. " (" .. Spotlight.Format(k, true) .. ")"); + if not Spotlight.Status[k].Completed then + self:AddDoubleLine(k .. ":", Spotlight.Format(k, false) .. " (" .. Spotlight.Format(k, true) .. ")"); + end end self:AddLine("|nClick to toggle display method"); end