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:
@@ -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,north_direction)
|
||||
r = nbt.load_region(full)
|
||||
chunks = r.get_chunks()
|
||||
for x,y in chunks:
|
||||
chunk = r.load_chunk(x,y).read_all()
|
||||
|
||||
Reference in New Issue
Block a user