Guildbook

Guildbook

686k Downloads

Missing minimap button tooltip

MyTechnoHunter opened this issue ยท 0 comments

commented

Latest Github version, wrath game client.

noticed in the code you have the section for the tooltip, but not tooltip..

       OnTooltipShow = function(tooltip)
            if not tooltip or not tooltip.AddLine then return end

        end,

to fix, just add

       OnTooltipShow = function(tooltip)
            if not tooltip or not tooltip.AddLine then return end
            tooltip.AddLine("Guildbook \nClick to Show/Hide Guildbook.");

        end,

or whichever tool tip you want

thanks for keeping this up to date!