WoWInterface SVN zz_itemsdb

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 56 to Rev 57
    Reverse comparison

Rev 56 → Rev 57

zz_itemsdb/guildbank.lua
6,6 → 6,7
['typ'] = 'guild'
}
local GuildBankIsOpen = false
local failCount = 0
local function gbagLoop(id)
local res = {}
local dName = modulname.."Count"
66,6 → 67,16
end
end
end
local count = 0
for k,v in pairs(itemlist) do
count = count + 1
end
if(count==0 and failCount<3) then
C_Timer.After(.2, function(tab) scanGuildBank(tab) end)
failCount = failCount + 1
return
end
failCount = 0
return empty and nil or itemlist
end
function events:GUILDBANKBAGSLOTS_CHANGED(event,...)