0

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

This reverts commit 085d400337.
This commit is contained in:
Aaron Griffith
2011-09-16 14:27:03 -04:00
parent 085d400337
commit 8c4dd10824
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):
print f
full = os.path.join(dirpath, f)
r = nbt.load_region(full)
r = nbt.load_region(full,north_direction)
chunks = r.get_chunks()
for x,y in chunks:
chunk = r.load_chunk(x,y).read_all()