diff --git a/client/src/lib.rs b/client/src/lib.rs index 1534c162c1..305cf38823 100644 --- a/client/src/lib.rs +++ b/client/src/lib.rs @@ -204,8 +204,8 @@ impl Client { } // Request chunks from the server - for i in chunk_pos.x - 2..chunk_pos.x + 3 { - for j in chunk_pos.y - 2..chunk_pos.y + 3 { + for i in chunk_pos.x - 1..chunk_pos.x + 2 { + for j in chunk_pos.y - 1..chunk_pos.y + 2 { for k in 0..2 { let key = Vec3::new(i, j, k); if self.state.terrain().get_key(key).is_none()