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 Jun 06 15:42:21 -0700 2008
commit  f96bbf8e54ffa723ca685dad1ced36fdafeed36d
tree    16a7d3c1daa8ec7fbc7ed6d23220718cd745e4fc
parent  88ca676ef1b457949e15cb52419ca2d23975592f
buffet / tekIDmemo.lua
100644 18 lines (13 sloc) 0.28 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,
})