We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec80d29 commit 0e63673Copy full SHA for 0e63673
src/client/terrain/util/chunk.rs
@@ -34,7 +34,6 @@ impl Chunk {
34
self.data[Self::index(x, y, z)] = value;
35
}
36
37
-
38
#[rustfmt::skip]
39
pub fn index(x: usize, y: usize, z: usize) -> usize {
40
if (x >= PADDED_CHUNK_SIZE) || (y >= PADDED_CHUNK_SIZE) || (z >= PADDED_CHUNK_SIZE) {
0 commit comments