WoWInterface SVN AtlasLootReverse

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 52 to Rev 54
    Reverse comparison

Rev 52 → Rev 54

AtlasLootReverse.toc
1,7 → 1,7
## Interface: 40000
## Interface: 40100
## Title: AtlasLootReverse
## Notes: Does a reverse lookup of AtlasLoot for an item's drop info.
## Version: 1.13
## Version: 1.14
## Author: pceric
## SavedVariables: AtlasLootReverseDB
## X-Website: http://www.wowinterface.com/downloads/info12834-AtlasLootReverse.html
AtlasLootReverse.lua
91,12 → 91,16
["T11SET"] = string.format(L["Tier %s"], "11"),
}
wipe(db.whoTable) -- Wipe the table
AtlasLoot:LoadModule("all") -- Force AtlasLoot to load all modules
-- Force AtlasLoot to load all modules
--AtlasLoot:LoadModule("all") -- (broken in 6.03)
for _,module in pairs(AtlasLoot.Modules) do
LoadAddOn(module[2])
end
for _,itable in pairs(AtlasLoot_Data) do
for k,v in pairs(itable) do
if string.find(k, "Normal") or string.find(k, "Heroic") or string.find(k, "25Man") then -- Doing a find because some are _A and some _H
for _, page in pairs(v) do
for k2,v2 in pairs(page) do
for _,v2 in pairs(page) do
if type(v2) == "table" and type(v2[2]) == "number" and v2[2] > 0 and not excludes[v2[2]] and itable.info.name ~= "Keys" then
if itable.info.instance and AtlasLoot_LootTableRegister.Instances[itable.info.instance] then
-- Some bizzare voodoo in ALE v6.02.00