diff --git a/modules/sstats/sstats.js b/modules/sstats/sstats.js index c3fec99..6c97582 100644 --- a/modules/sstats/sstats.js +++ b/modules/sstats/sstats.js @@ -179,7 +179,9 @@ var sstats = function(dbot) { if(key != 'creation' && key != 'id') { if(_.isObject(stat)) { _.each(ouStats[key], function(stat, sKey) { - nuStats[key][sKey] += stat; + _.each(ouStats[key][sKey], function(stat, ssKey) { + nuStats[key][sKey][ssKey] += stat; + }); }); } else { nuStats[key] += stat;