From 8c3598fc29cb11a34196082b11f639467912a4f9 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Sun, 3 Mar 2013 22:42:38 -0600 Subject: stats: enables for the individual blocks --- python/gras/stats/registry.js | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'python/gras/stats/registry.js') diff --git a/python/gras/stats/registry.js b/python/gras/stats/registry.js index 197f874..04e74b7 100644 --- a/python/gras/stats/registry.js +++ b/python/gras/stats/registry.js @@ -1,12 +1,3 @@ -/*********************************************************************** - * Per block registry data structure - **********************************************************************/ -var GrasBlockRegistry = function(id) -{ - this.id = id; - this.enabled = true; -} - /*********************************************************************** * Stats registry data structure **********************************************************************/ @@ -15,6 +6,7 @@ var GrasStatsRegistry = function() this.ids = new Array(); this.enables = new Array(); this.history = new Array(); + this.block_enables = new Array(); this.overall_rate = 2.0; this.overall_active = true; } -- cgit