diff options
author | ubq323 <ubq323@ubq323.website> | 2023-06-18 22:28:37 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2023-06-18 22:28:37 +0100 |
commit | f55c9f415a081a175e48b51db894f23e59ce47a2 (patch) | |
tree | ee63f98d5c4f1a2a11e9800ced9c2861eb3085a7 /server/chunk.lua | |
parent | 598bd4332deddd5f4c506689cbd136f495835ea7 (diff) |
fix line lengths
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 |