1
0
Bifurcation 0

More structural changes to the data collection.

Cette révision appartient à :
Nathanial.C.Jones 2011-01-21 11:17:58 +00:00
Parent 1052cb19d1
révision 1b27a605c5
1 fichiers modifiés avec 4 ajouts et 2 suppressions

Voir le fichier

@ -35,8 +35,10 @@ local recentlySeenCritters_NextTrash = {}
local recentlySeenCritters_Recent = {}
local function AccumulateFrequency(target, name, data)
local key = name .. "_" .. tostring(data)
target[key] = (target[key] or 0) + 1
if not target[name] then target[name] = {}
target[name][data] = (target[name][data] or 0) + 1
--local key = name .. "_" .. tostring(data)
--target[key] = (target[key] or 0) + 1
end
local function MouseoverUnit()