ActionbarPlus

ActionbarPlus

78.7k Downloads

Toy Tooltip Incorrect

nfet opened this issue ยท 1 comments

commented

Toy tooltip is showing the "item" part of the tooltip, not the toy.

image

commented

Here's the potential fix:

if itemInfo and itemInfo.id then
    if itemInfo:isToy() then
        GameTooltip:SetToyByItemID(itemInfo.id)
    else
        GameTooltip:SetItemByID(itemInfo.id)
    end
end

See:

if itemInfo and itemInfo.id then
GameTooltip:SetItemByID(itemInfo.id)
end