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

This commit is contained in:
haslersn 2019-08-15 02:07:43 +02:00
parent 57354fb062
commit 8451a06804

View File

@ -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,
};
}