0

Do not use the newer than check on windows since apparently minecraft will not force a timestamp update on the file when they are written until it's closed.

This commit is contained in:
Patrick-Emmanuel Boulanger-Nadeau
2014-01-21 10:08:19 -05:00
parent c438a37b29
commit 6ee3eba550

View File

@@ -758,7 +758,7 @@ class TileSet(object):
# tile is older, mark it in a RendertileSet object as dirty. # tile is older, mark it in a RendertileSet object as dirty.
for chunkx, chunkz, chunkmtime in self.regionset.iterate_chunks() if markall else self.regionset.iterate_newer_chunks(last_rendertime): for chunkx, chunkz, chunkmtime in self.regionset.iterate_chunks() if (markall || platform.system() == 'Windows') else self.regionset.iterate_newer_chunks(last_rendertime):
chunkcount += 1 chunkcount += 1
if chunkmtime > max_chunk_mtime: if chunkmtime > max_chunk_mtime: