keep presentChunks property for compatibility, just calls allChunks
This commit is contained in:
parent
767f3a9295
commit
212d606cb2
@ -450,6 +450,9 @@ class MCLevel(object):
|
||||
def loadedChunks(self):
|
||||
return itertools.product(xrange(0, self.Width+15>>4), xrange(0, self.Length+15>>4))
|
||||
|
||||
@property
|
||||
def presentChunks(self): return self.allChunks #backward compatibility
|
||||
|
||||
@property
|
||||
def allChunks(self):
|
||||
return self.loadedChunks
|
||||
|
Reference in New Issue
Block a user