diff options
Diffstat (limited to 'server/chunk.lua')
-rw-r--r-- | server/chunk.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/chunk.lua b/server/chunk.lua index bb30945..20db704 100644 --- a/server/chunk.lua +++ b/server/chunk.lua @@ -11,8 +11,7 @@ function ChunkS.make(cls,...) end function ChunkS.apply_migrations(self) - -- if tile format has changed and format in db isn't up to date any more - -- then perform updates here + -- if tile format has changed, perform updates here for i,t in ipairs(self.tiles) do if t == false then self.tiles[i] = 0 elseif t == true then self.tiles[i] = 9 end |