Added some stub methods to PocketChunk so that the analyze command doesn't crash
This commit is contained in:
parent
b5decefa56
commit
b6a490f7f9
@ -400,12 +400,18 @@ class PocketChunk(LightedChunk):
|
|||||||
def load(self):
|
def load(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def unload(self):
|
||||||
|
pass
|
||||||
|
|
||||||
def decompress(self):
|
def decompress(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def compress(self):
|
def compress(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def compressedSize(self):
|
||||||
|
return 0
|
||||||
|
|
||||||
def unpackChunkData(self):
|
def unpackChunkData(self):
|
||||||
for key in ('SkyLight', 'BlockLight', 'Data'):
|
for key in ('SkyLight', 'BlockLight', 'Data'):
|
||||||
dataArray = getattr(self, key)
|
dataArray = getattr(self, key)
|
||||||
|
Reference in New Issue
Block a user