0

small findSigns.py fix -- loading regions with north_direction pre-rotates

What we want in findSigns.py is the raw map data.
This commit is contained in:
Aaron Griffith
2011-09-16 13:43:20 -04:00
parent cce4fcaa55
commit 085d400337
2 changed files with 2 additions and 2 deletions

View File

@@ -69,7 +69,7 @@ for dirpath, dirnames, filenames in os.walk(worlddir):
if matcher.match(f): if matcher.match(f):
print f print f
full = os.path.join(dirpath, f) full = os.path.join(dirpath, f)
r = nbt.load_region(full,north_direction) r = nbt.load_region(full)
chunks = r.get_chunks() chunks = r.get_chunks()
for x,y in chunks: for x,y in chunks:
chunk = r.load_chunk(x,y).read_all() chunk = r.load_chunk(x,y).read_all()

View File

@@ -200,7 +200,7 @@ class MCRFileReader(object):
chunks (as instances of NBTFileReader), getting chunk timestamps, chunks (as instances of NBTFileReader), getting chunk timestamps,
and for listing chunks contained in the file.""" and for listing chunks contained in the file."""
def __init__(self, filename, north_direction): def __init__(self, filename, north_direction='lower-left'):
self._file = None self._file = None
self._filename = filename self._filename = filename
self.north_direction = north_direction self.north_direction = north_direction