builder using command computer

This commit is contained in:
kepler155c@gmail.com
2017-09-04 17:41:46 -04:00
parent 3a5da45877
commit 2b1d96ab37
6 changed files with 1461 additions and 2102 deletions

View File

@@ -8,7 +8,7 @@ function TableDB:init(args)
data = { },
tabledef = { },
}
Util.merge(defaults, args) -- refactor
Util.merge(defaults, args)
Util.merge(self, defaults)
end
@@ -43,7 +43,7 @@ end
function TableDB:flush()
if self.dirty then
Util.writeTable(self.fileName, {
tabledef = self.tabledef,
-- tabledef = self.tabledef,
data = self.data,
})
self.dirty = false