View Single Post
11-01-16, 04:02 PM   #6
Voyager
A Fallenroot Satyr
AddOn Author - Click to view addons
Join Date: Dec 2009
Posts: 22
Just force it to be cached on ui load.

Lua Code:
  1. local f = CreateFrame("Frame")
  2. f:RegisterEvent("PLAYER_LOGIN")
  3. f:SetScript("OnEvent", function(self, event, ...)
  4.     f:UnregisterEvent("PLAYER_LOGIN")
  5.     f:SetScript("OnEvent", nil)
  6.     GetItemInfo(114982)
  7. end)
  Reply With Quote