0

fixed typo in quadtree.py

This commit is contained in:
Aaron Griffith
2011-03-01 20:42:58 -05:00
parent d813053329
commit 94c1fbfaa6

View File

@@ -628,7 +628,7 @@ def render_worldtile(quadtree, chunks, colstart, colend, rowstart, rowend, path)
# checking chunk mtime
with open(regionfile, 'rb') as regionfile:
region = nbt.MCRFileReader(regionfile)
if region.get_chunk_timestamp(chunkx, chunky) > time_mtime:
if region.get_chunk_timestamp(chunkx, chunky) > tile_mtime:
needs_rerender = True
if needs_rerender:
break