From b2343015215ab27cb57797f1e4fffd7f44df4c79 Mon Sep 17 00:00:00 2001 From: Aaron Griffith Date: Tue, 21 Feb 2012 02:42:06 -0500 Subject: [PATCH] small, cargo-cult change to how tileset.py positions drawn chunk sections --- overviewer_core/tileset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overviewer_core/tileset.py b/overviewer_core/tileset.py index 62c0dea..aab021c 100644 --- a/overviewer_core/tileset.py +++ b/overviewer_core/tileset.py @@ -801,7 +801,7 @@ class TileSet(object): max_chunk_mtime = 0 for col, row, chunkx, chunky, chunkz, chunk_mtime in chunks: xpos = -192 + (col-colstart)*192 - ypos = -96 + (row-rowstart)*96 + chunky*192 + ypos = -96 + (row-rowstart)*96 + (16-1 - chunky)*192 if chunk_mtime > max_chunk_mtime: max_chunk_mtime = chunk_mtime