Skip to content

Commit 0e63673

Browse files
Update src/client/terrain/util/chunk.rs
1 parent ec80d29 commit 0e63673

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/client/terrain/util/chunk.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ impl Chunk {
3434
self.data[Self::index(x, y, z)] = value;
3535
}
3636

37-
3837
#[rustfmt::skip]
3938
pub fn index(x: usize, y: usize, z: usize) -> usize {
4039
if (x >= PADDED_CHUNK_SIZE) || (y >= PADDED_CHUNK_SIZE) || (z >= PADDED_CHUNK_SIZE) {

0 commit comments

Comments
 (0)