0

genPOI: catch ChunkDoesntExist when processes > 1

Fixes #1480.

No clue how this wasn't an issue before but is an issue now in 1.13,
maybe Minecraft writes more placeholder chunks these days.
This commit is contained in:
Nicolas F
2018-11-26 13:03:44 +01:00
parent cf53208989
commit 38bc400b2f

View File

@@ -127,6 +127,8 @@ def parseBucketChunks((bucket, rset, filters)):
markers[name].append(d)
except nbt.CorruptChunkError:
logging.warning("Ignoring POIs in corrupt chunk %d,%d", b[0], b[1])
except world.ChunkDoesntExist:
pass
# Perhaps only on verbose ?
i = i + 1