common: Set TerrainChunk::SIZE.z = std::i32::MAX

This commit is contained in:
haslersn 2019-08-15 02:07:43 +02:00
parent b56de5631f
commit da40445156

@ -23,7 +23,7 @@ impl VolSize for TerrainChunkSize {
const SIZE: Vec3<u32> = Vec3 {
x: 32,
y: 32,
z: 32,
z: std::i32::MAX as u32,
};
}