From 914a3073f0c80ffb9b25dea58860d3b844007b0e Mon Sep 17 00:00:00 2001 From: Andrew Chin Date: Mon, 8 Nov 2010 20:36:02 -0500 Subject: [PATCH] Fixed --chunklist This bug was introduced by the signpost code which required a queue object to be passed to the chunk rendered. This wasn't done with --chunklist --- world.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/world.py b/world.py index 7962350..8d94164 100644 --- a/world.py +++ b/world.py @@ -269,7 +269,7 @@ class WorldRenderer(object): if inclusion_set and (col, row) not in inclusion_set: # Skip rendering, just find where the existing image is _, imgpath = chunk.ChunkRenderer(chunkfile, - self.cachedir, self).find_oldimage(False) + self.cachedir, self, q).find_oldimage(False) if imgpath: results[(col, row)] = imgpath continue @@ -295,7 +295,7 @@ class WorldRenderer(object): if inclusion_set and (col, row) not in inclusion_set: # Skip rendering, just find where the existing image is _, imgpath = chunk.ChunkRenderer(chunkfile, - self.cachedir, self).find_oldimage(False) + self.cachedir, self, q).find_oldimage(False) if imgpath: results[(col, row)] = imgpath continue