WoWInterface SVN NeedyGreedy

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 202 to Rev 201
    Reverse comparison

Rev 202 → Rev 201

trunk/NeedyGreedy.lua
6,8 → 6,6
local report = {}
local items = {}
local nameList = {}
local NAME_LOG = {}
local NAMELIST_LOG = {}
local EVENT_LOG = {}
 
-- Set up DataBroker object
962,10 → 960,6
-- For debugging
if self.db.profile.debugStatus then
self:AddEventToLog({event, rollid, rollTime})
 
-- Take a snapshot of the current state of the name lists
table.insert(NAMELIST_LOG, self:GetSortedPlayers())
table.insert(NAME_LOG, self:GetPlayers())
end
 
local texture, name, count, quality = GetLootRollItemInfo(rollid)
1836,10 → 1830,10
dumpString = dumpString .. "\n" .. self:PrintTable(EVENT_LOG)
 
dumpString = dumpString .. "\n\nGetSortedPlayers = "
dumpString = dumpString .. "\n" .. self:PrintTable(NAMELIST_LOG)
dumpString = dumpString .. "\n" .. self:PrintTable(self:GetSortedPlayers())
 
dumpString = dumpString .. "\n\nGetPlayers = "
dumpString = dumpString .. "\n" .. self:PrintTable(NAME_LOG)
dumpString = dumpString .. "\n" .. self:PrintTable(self:GetPlayers())
 
return dumpString
end