comparison Core.lua @ 91:5ade79caeece

Starting to add a global timestamp to allow for incremental updates.
author John@Yosemite-PC
date Mon, 16 Apr 2012 07:06:50 -0400
parents 22b37c800bc4
children 5df2c9cdb8c8
comparison
equal deleted inserted replaced
90:dcbe1f04bb31 91:5ade79caeece
16 -- (*) players gui 16 -- (*) players gui
17 -- ( ) undo 17 -- ( ) undo
18 -- ( ) crypto / protection against tampering 18 -- ( ) crypto / protection against tampering
19 -- ( ) alt tracking 19 -- ( ) alt tracking
20 -- (*) reserves 20 -- (*) reserves
21 -- ( ) comparison vs currently equipped item
21 22
22 local _G=_G 23 local _G=_G
23 local strsplit=strsplit 24 local strsplit=strsplit
24 local string=string 25 local string=string
25 local sformat=string.format 26 local sformat=string.format
207 end 208 end
208 end 209 end
209 210
210 defaults = { 211 defaults = {
211 profile = { 212 profile = {
213 time = 0,
212 persons = {}, 214 persons = {},
213 changes = {}, 215 changes = {},
214 lists = {} 216 lists = {}
215 } 217 }
216 } 218 }