From e218c2b01e9c35964b012ef6feb20cc19fbf71fe Mon Sep 17 00:00:00 2001 From: David Vierra Date: Sun, 18 Sep 2011 00:49:12 -1000 Subject: [PATCH] remove debug code --- infiniteworld.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infiniteworld.py b/infiniteworld.py index 1a46961..2f389e0 100644 --- a/infiniteworld.py +++ b/infiniteworld.py @@ -2579,8 +2579,8 @@ class MCInfdevOldLevel(EntityLevel): def shouldCreateFunc(slices, point): box = subbox(slices, point) b = any(list(sourceLevel.containsChunk(*c) for c in box.chunkPositions)) #any() won't take a generator-expression :( - if b == False: - print 'Skipped ', list(box.chunkPositions) + #if b == False: + # print 'Skipped ', list(box.chunkPositions) return b for chunk, slices, point in self.getChunkSlices(destBox, create=(create and shouldCreateFunc)):