_allChunks needs to be a set!

This commit is contained in:
David Vierra 2010-11-27 01:58:15 -10:00
parent f8a63b4eed
commit 81d9d0396f

View File

@ -3196,7 +3196,7 @@ class ZipSchematic (MCInfdevOldLevel):
def preloadChunkPaths(self): def preloadChunkPaths(self):
info( u"Scanning for chunks..." ) info( u"Scanning for chunks..." )
self._allChunks = {} self._allChunks = set()
infos = self.zipfile.infolist() infos = self.zipfile.infolist()
names = [i.filename.split('/') for i in infos] names = [i.filename.split('/') for i in infos]