return String.format("%d.%d.%d.chunks.zip", pos.x, pos.y, pos.z);
}
public Vector3i getChunkZipPosition(Vector3i chunkPos) {
Vector3i result = new Vector3i(chunkPos);
result.divide(CHUNK_ZIP_DIM);
if (chunkPos.x < 0) {
result.x -= 1;
}
if (chunkPos.y < 0) {
result.y -= 1;