aboutsummaryrefslogtreecommitdiff
path: root/azalea-world/src
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-world/src')
-rw-r--r--azalea-world/src/chunk_storage.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea-world/src/chunk_storage.rs b/azalea-world/src/chunk_storage.rs
index daabb214..0c60376a 100644
--- a/azalea-world/src/chunk_storage.rs
+++ b/azalea-world/src/chunk_storage.rs
@@ -106,7 +106,8 @@ impl ChunkStorage {
if !self.in_range(pos) {
log::trace!(
"Ignoring chunk since it's not in the view range: {}, {}",
- pos.x, pos.z
+ pos.x,
+ pos.z
);
return Ok(());
}