Ketho / vscode-wow-api

VS Code extension for World of Warcraft AddOns
https://marketplace.visualstudio.com/items?itemName=ketho.wow-api
MIT License
155 stars 33 forks source link

GameTooltip missing from _G #106

Closed filliph closed 1 year ago

filliph commented 1 year ago

image

Quick reproduction code:

---@param tooltip GameTooltip
---@param tooltipData table
local function HandleTooltip(tooltip, tooltipData)
    if tooltip ~= _G.GameTooltip then
        return
    end

    --[[
        Rest of the code here
    ]]
end

-- Tooltip integration
TooltipDataProcessor.AddTooltipPostCall(Enum.TooltipDataType.Item, HandleTooltip)