changeset 102:21567b74fcc7

Notes and corrections
author John@Doomsday
date Thu, 03 May 2012 09:05:24 -0400
parents 25c127c4c1e8
children d3ea0ab1428d
files Comm.lua
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Comm.lua	Thu May 03 09:04:51 2012 -0400
+++ b/Comm.lua	Thu May 03 09:05:24 2012 -0400
@@ -125,7 +125,7 @@
         IntegrateChangeDiff(packet)
     end,
 
-    ["RequestCatchup"] = function(self)
+    ["RequestCatchup"] = function(self,from) -- todo: integrate from
         if not admin then
             --local string = _g.tostring(timestamp)
             --for i,v in ipairs(db.profile.changes) do -- append all change timestamps
@@ -159,7 +159,7 @@
     end,
 
     ["SendAdminStatusTable"] = function(self)
-        if admin and onloadAdminStatus and _G.next(onloadAdminStatus) then
+        if admin then
             SendAdmin("SA",onloadAdminStatus) -- only send onload status, since that's the only data you're guaranteed to have safely safed
         end
     end,