0

Fixed typos... they're not my fault!

This commit is contained in:
Andrew Chin
2012-01-01 22:20:43 -05:00
parent 6fa86d39bc
commit 319d444997

View File

@@ -280,12 +280,12 @@ Old name: world.iterate_chunk_metadata
for chunkx, chunky in mcr.get_chunks():
yield chunkx+32*regionx, chunky+32*regiony, mcr.get_chunk_timestamp(chunkx, chunky)
def get_chunk_mtime(self, x, zr):
"""Returns a chunks mtime, or False if the chunk does not exist.
def get_chunk_mtime(self, x, z):
"""Returns a chunk's mtime, or False if the chunk does not exist.
This is therefore a dual purpose method. It corrects for the given north
direction as described in the docs for get_chunk()"""
regionfile = self.get_region_path(x,y)
regionfile = self.get_region_path(x,z)
if regionfile is None:
return None