public
Description: WoW Addon - Food/water macro generator
Homepage: http://www.tekkub.net
Clone URL: git://github.com/tekkub/buffet.git
Click here to lend your support to: buffet and make a donation at www.pledgie.com !
tekkub (author)
Fri Sep 19 21:22:46 -0700 2008
commit  8b7468b96a468fd687987a832843e19afe431504
tree    6e9c0113f3f64de19b75bc8f5fe3074dfe4ee780
parent  bd491320fea60d621da1823f77eb51339b25ebed
buffet / tekIDmemo.lua
100644 18 lines (13 sloc) 0.263 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
local ids = LibStub:NewLibrary("tekIDmemo", 1)
if not ids then return end
 
setmetatable(ids, {
  __index = function(t,i)
    if type(i) ~= "string" then
      t[i] = false
      return
    end
 
    local id = tonumber(i:match("item:(%d+)"))
    t[i] = id
    return id
  end,
})